POST
Create & Publish Story
Publish a WhatsApp Status of any type (text, image, video, or audio).
API endpoint
https://waclient.com/api/publish_storyExample:
curl -X POST \
'https://waclient.com/api/publish_story' \
-H 'Content-Type: application/json' \
--data '{
"type": "text",
"message": "Hello status!",
"status_jid_list": [
"20100981XXXX"
],
"instance_id": "6A4B02A1XXXX",
"access_token": "EMCUH3NQQK8YXXXX"
}'Response
{
"status": "success",
"message": "Success",
"data": {
"key": {
"id": "STORY123",
"remoteJid": "status@broadcast"
},
"status": "PENDING"
}
}| Parameter | Description |
|---|---|
| type / story_kind | text, image, video, or audio |
| message / caption | Text or media caption (Optional) |
| media_url | Required for media stories (Optional) |
| status_jid_list | Viewer phone numbers |
| instance_id | Your instance ID |
| access_token | Your access token |