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) |
| msgid | string | No | Quoted message ID to reply to |
| 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.
fullJSON 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!"
}
msgid (reply)JSON Request
{
"api_key": "1234567890",
"sender": "62888xxxx",
"number": "62888xxxx",
"url": "https://example.com/image.jpg",
"msgid": "3EB031F83D74BF480052B9"
}
URL Request
{{ url('/') }}/send-sticker?api_key=1234567890&sender=62888xxxx&number=62888xxxx&url=https://example.com/image.jpg&msgid=3EB031F83D74BF480052B9
fullJSON 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...",
"mimetype": "image/webp"
}
},
"messageTimestamp": "1755629964"
}
}