Use this endpoint to retrieve all messages sent from your project. The response includes each message’s current delivery status, so you can monitor the overall health of your outbound traffic at a glance.Documentation Index
Fetch the complete documentation index at: https://docs.relayos.com.br/llms.txt
Use this file to discover all available pages before exploring further.
Request
GET https://api.relayos.com.br/v1/messages
Headers
Bearer token for your RelayOS API key. Format:
Bearer YOUR_API_KEY.Example
Response
Returns an array of message objects. Each object reflects the message’s latest known status at the time of the request.Unique message ID assigned by RelayOS.
Current delivery status of the message. Possible values:
| Value | Meaning |
|---|---|
QUEUED | Accepted by RelayOS, not yet sent to Meta |
SENT | Submitted to the WhatsApp Cloud API |
DELIVERED | Confirmed delivered to the recipient’s device |
READ | Recipient opened the message |
FAILED | Delivery failed after all retry attempts |
Recipient phone number in E.164 format.
Name of the template used for this message.
ISO 8601 timestamp of when RelayOS accepted the message.
To track a specific message in real time, use
GET /v1/messages/{id} or configure a webhook callback URL on your project to receive status updates as they happen.