Send an emoji reaction to a message
curl --request POST \
--url https://api.example.com/message/sendReaction/:instanceName \
--header 'Content-Type: application/json' \
--data '
{
"key": {
"remoteJid": "<string>",
"fromMe": true,
"id": "<string>"
},
"reaction": "<string>"
}
'{
"key": {},
"message": {}
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/EvolutionAPI/evolution-api/llms.txt
Use this file to discover all available pages before exploring further.
Show Key properties
curl -X POST https://your-api.com/message/sendReaction/my-instance \
-H "apikey: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"key": {
"remoteJid": "5511999999999@s.whatsapp.net",
"fromMe": false,
"id": "3EB0F2F5E6B5F5B5F5B5F5B5F5B5F5B5"
},
"reaction": "👍"
}'
Add a reaction
reaction value:{
"key": { ...messageKey },
"reaction": "❤️"
}
Remove a reaction
{
"key": { ...messageKey },
"reaction": ""
}
key object is includedkeynumber@s.whatsapp.netgroupId@g.usnumber@lid (for Business API)curl --request POST \
--url https://api.example.com/message/sendReaction/:instanceName \
--header 'Content-Type: application/json' \
--data '
{
"key": {
"remoteJid": "<string>",
"fromMe": true,
"id": "<string>"
},
"reaction": "<string>"
}
'{
"key": {},
"message": {}
}