Send Sticker API

Api Docs Sending Sticker Messages

Method : POST | GET

Endpoint: {{ url('/') }}/send-sticker

Request Body : (JSON If POST)

Parameter Type Required Description
api_key string Yes API Key
sender string Yes Number of your device
number string Yes Recipient number ex 72888xxxx | 62888xxxx
url string Yes Direct URL of sticker (image/gif → converted to webp)
full number No Show full response from WhatsApp

Note: Make sure the url is a direct link, not a shared link from Google Drive or other cloud storage.


Example Without full

JSON Request

{
    "api_key": "1234567890",
    "sender": "62888xxxx",
    "number": "62888xxxx",
    "url": "https://example.com/image.jpg"
}

URL Request

{{ url('/') }}/send-sticker?api_key=1234567890&sender=62888xxxx&number=62888xxxx&url=https://example.com/image.jpg

JSON Response

{
    "status": true,
    "msg": "Message sent successfully!"
}

Example With full

JSON Request

{
    "api_key": "1234567890",
    "sender": "62888xxxx",
    "number": "62888xxxx",
    "url": "https://example.com/image.jpg",
    "full": 1
}

URL Request

{{ url('/') }}/send-sticker?api_key=1234567890&sender=62888xxxx&number=62888xxxx&url=https://example.com/image.jpg&full=1

JSON Response

{
  "status": true,
  "data": {
    "key": {
      "remoteJid": "62888xxxx@c.us",
      "fromMe": true,
      "id": "3EB08D898XXXXXXXXXXXX"
    },
    "message": {
      "stickerMessage": {
        "url": "https://mmg.whatsapp.net/o1/v/t24/f2/m234/AQNYq76feCY7f3iqD-ZyhEXxYrureD5rMxprf7mdRvldS52vXvVsGCCyPastQHDRHvK2DRrjhq3-MIzmgvhvXXXXXXXXXXXXXXXXX...",
        "fileSha256": "6wt3hsyPCFLpdNkegbeGPNeEXXXXXXXXXXXXXXXXX=",
        "fileEncSha256": "K0W5QaqCYGUqTlsKuQkNH1pOXXXXXXXXXXXXXXXXX=",
        "mediaKey": "QTjgKQE1EMBN1NA1pjt2RycePH7BXXXXXXXXXXXXXXXXX=",
        "mimetype": "image/webp",
        "directPath": "/o1/v/t24/f2/m234/AQNYq76feCY7f3iqD-ZyhEXxYrureD5rMxprf7mdRvldS52vXvVsGCCyPastQHDRHvK2DRrjhq3-MIzmgvhvu3XXXXXXXXXXXXXXXXX...",
        "fileLength": "10474",
        "mediaKeyTimestamp": "1755629964"
      }
    },
    "messageTimestamp": "1755629964"
  }
}