GET
/api/messages/{msgId}/info
Retrieves detailed information about a specific message, such as its content, sender, receiver, status and timestamps.
Get Message Info
Retrieves detailed information about a specific message, such as its content, sender, receiver, status and timestamps.
Parameters
Name | Type | Required | Description |
---|---|---|---|
msgId | integer | Yes | The ID of the message to retrieve information for its returned from send-message endpoints. |
Code Examples
curl "https://www.wasenderapi.com/api/messages/{msgId}/info"
-H "Authorization: Bearer YOUR_API_KEY"
Response Examples
{
"success": true,
"data": {
"remoteJid": "123456789@s.whatsapp.net",
"id": "EN82FV0387IVR54JTE2R1",
"msgId": 100000,
"key": {
"id": "EN82FV0387IVR54JTE2R1",
"fromMe": true,
"remoteJid": "123456789@s.whatsapp.net"
},
"message": {
"extendedTextMessage": {
"text": "quoted",
"contextInfo": {
"stanzaId": "SNE5U4M5OSPWHXHN1WBGV",
"participant": "123456789@s.whatsapp.net",
"quotedMessage": {
"extendedTextMessage": {
"text": "quoted"
}
}
}
}
},
"messageTimestamp": "1751297488",
"status": 2
}
}