---
title: "Get SMS"
method: GET
path: "/v2/sms/{id}"
tags: ["SMS"]
---

# Get SMS

`GET /v2/sms/{id}`

Retrieves information about an existing SMS message. You only need to supply the unique message id that was returned upon message creation.

## Path parameters

- `id` string, uuid, required

## Response `200`

A single SMS message

- SMSResponse — SMS message details.
  - `id` string, required — Unique identifier for the SMS message.
  - `recipient` string, required — The destination number for delivery.
  - `recipient_country` string, required — Recipient country code.
  - `sender` string, required — The sender number.
  - `sender_country` string, required — Sender country code.
  - `message_ref` string, required — Reference supplied by your system.
  - `message` string, required — Body text of the SMS message.
  - `status` string, required — Status of the message.
  - `sms_count` string, required — Number of SMS parts the message was split into.
  - `is_gsm` boolean, required — Whether the message uses GSM encoding.
  - `is_sandbox` boolean, required — Deprecated. Will be removed in a future version.
  - `routed_via` string, required — The route used to send the message.
  - `track_links` boolean, required — Whether link tracking is enabled.
  - `direction` string, required — Direction of the message (IN/OUT).
  - `created_at` string, required — Timestamp when the SMS was created.
  - `updated_at` string, required — Timestamp when the SMS was last updated.

## Other responses

- `404` — SMS not found

---

[API](https://skmtc.net/kudosity/apis/transmit-sms-api.md) · [All operations](https://skmtc.net/kudosity/apis/transmit-sms-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kudosity/transmit-sms-api/versions/9f6c34b849af/schema)
