Skip to main content
GET
/
v1
/
sms
/
{id}
Get SMS
curl --request GET \
  --url https://api.unosend.co/v1/sms/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "to": "+919876543210",
    "body": "[Flow: 6811f3a7d6fc0566db3b0183]",
    "status": "sent",
    "cost": 0.006,
    "segments": 1,
    "template_id": "6811f3a7d6fc0566db3b0183",
    "provider_id": "3664703041...",
    "created_at": "2026-04-15T15:30:00Z"
  }
}
id
string
required
The UUID of the SMS message.

Response

id
string
Unique SMS message ID.
to
string
Recipient phone number.
body
string
Message body or template reference.
status
string
Delivery status: queued, sent, delivered, or failed.
cost
number
Cost in USD. 0 for free tier messages.
segments
integer
Number of SMS segments.
template_id
string
Template/flow ID used.
provider_id
string
Provider tracking ID.
created_at
string
ISO 8601 timestamp.
{
  "success": true,
  "data": {
    "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "to": "+919876543210",
    "body": "[Flow: 6811f3a7d6fc0566db3b0183]",
    "status": "sent",
    "cost": 0.006,
    "segments": 1,
    "template_id": "6811f3a7d6fc0566db3b0183",
    "provider_id": "3664703041...",
    "created_at": "2026-04-15T15:30:00Z"
  }
}