Export messages
Streams matching SMS and MMS messages as newline-delimited JSON (NDJSON), one message per line, for bulk export.
Authorizations
Wavix API key. Pass as Authorization: Bearer <api_key>. Keys support per-resource scopes (none / read / write). See Restricted keys and scopes.
Query Parameters
Returns messages sent on or after this timestamp, in YYYY-MM-DDTHH:MM:SS format.
"2023-04-10T00:00:00"
Returns messages sent on or before this timestamp, in YYYY-MM-DDTHH:MM:SS format.
"2023-04-13T23:59:59"
Filters messages by direction. One of inbound (messages received by the account) or outbound (messages sent by the account).
"outbound"
Filters by message sender. For outbound messages, the Sender ID used to send the message; for inbound messages, the originating phone number.
"15072429497"
Filters by message recipient. For outbound messages, the destination phone number; for inbound messages, the SMS-enabled number that received the message.
"16419252149"
Filters messages by delivery status. Accepts a MessageDeliveryStatus value.
Current delivery status of the message. One of:
accepted— the message was accepted by the platform for sending.pending— the message is queued and awaiting a carrier response.sent— the message was handed to the carrier.delivered— the carrier confirmed delivery to the handset.undelivered— the carrier reported that delivery failed.expired— the validity period elapsed before the message was sent.rejected— the message was rejected before sending.dlr_expired— no delivery receipt arrived from the carrier within the expected window.
accepted, pending, sent, delivered, undelivered, expired, rejected, dlr_expired Filters messages by tag. Supported for outbound messages only.
"campaignX"
Filters messages by type. One of sms (text message) or mms (multimedia message).
sms, mms "sms"
Response
Returns an NDJSON stream of messages, one per line.
Newline-delimited JSON stream of messages.
"{\"message_id\":\"3a525ca2-6909-4c72-9399-905adf7f3a74\",\"message_type\":\"sms\",\"from\":\"15072429497\",\"to\":\"16419252149\",\"direction\":\"outbound\",\"status\":\"delivered\"}\n{\"message_id\":\"4b636ca3-7900-5d83-a400-016bf8f8f4b85\",\"message_type\":\"sms\",\"from\":\"15072429497\",\"to\":\"16419252150\",\"direction\":\"outbound\",\"status\":\"delivered\"}\n"