curl -X POST https://your-api.com/message/sendButtons/my-instance \
-H "apikey: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"number": "5511999999999",
"title": "Choose an action",
"description": "Select one of the options below",
"footer": "Powered by Evolution API",
"buttons": [
{
"type": "reply",
"displayText": "Option 1",
"id": "option-1"
},
{
"type": "url",
"displayText": "Visit Website",
"url": "https://evolution-api.com"
},
{
"type": "call",
"displayText": "Call Us",
"phoneNumber": "5511999999999"
}
]
}'