API Reference
WhatsApp Messaging

Download media

GET
/v1/whatsapp/media/{id}

Streams the bytes of a media object.

Inbound messages carry media as an id, not a URL — {"type":"image","image":{"id":"1234567890123456"}}. This endpoint is how you turn that id into the file.

Sautikit proxies the bytes rather than redirecting you, deliberately: Meta serves media from a short-lived host whose URL expires in five minutes and is authorised only by your workspace's access token. A redirect would hand you a link that is both dead on arrival and, if it worked, would carry that token.

The response is the raw file. Content-Type is the MIME type Meta reports, and X-Sautikit-Media-Sha256 carries Meta's checksum so you can verify what you received.

curl "https://api.sautikit.com/v1/whatsapp/media/$MEDIA_ID?number_id=$NUMBER_ID" \  -H "Authorization: Bearer $SAUTIKIT_API_KEY" \  -o receipt.pdf

Meta's reference: https://developers.facebook.com/docs/whatsapp/cloud-api/reference/media

API-key scope: whatsapp.messages.

Authorization

bearerAuth
AuthorizationBearer <token>

Long-lived ES256 JWT minted from the dashboard (https://app.sautikit.com/developers/api-keys). Signed by the platform keyring. Carries workspace_id and scopes claims; revoked via the platform deny-list.

In: header

Path Parameters

id*string

Meta's media id, as carried on an inbound message (e.g. image.id).

Query Parameters

number_id?string

The Sautikit number the media belongs to. Mutually exclusive with connection_id.

Formatuuid
connection_id?string

The WhatsApp connection the media belongs to. Mutually exclusive with number_id.

Formatuuid

Response Body

application/octet-stream

application/json

application/json

curl -X GET "https://example.com/v1/whatsapp/media/string"
"string"
{  "error": {    "code": "validation.bad_request",    "message": "string",    "request_id": "string",    "details": [      "string"    ]  }}
{  "error": {    "code": "validation.bad_request",    "message": "string",    "request_id": "string",    "details": [      "string"    ]  }}