# SMS: SMS from the same API.

Verification codes, delivery updates, and reminders. Routing is handled per country.

- Verification codes
- Delivery updates
- Appointment reminders

## Routing

The destination number sets the country. We pick the cheapest configured provider for it.

## Sender ID

Use your own sender ID where the country allows it, or the default for the route.

## Delivery receipts

Receipts arrive by signed webhook. Every message keeps its event history.

## Example

```typescript
const { data, error } = await retransmit.sms.send({
  from: "Acme",
  to: "+237670000000",
  text: "Your order is on its way.",
});
```

[API documentation](https://docs.retransmit.dev/api-reference)

---

Canonical: https://retransmit.dev/products/sms

Agent resources: [llms.txt](https://retransmit.dev/llms.txt) | [sitemap](https://retransmit.dev/sitemap.xml) | [OpenAPI spec](https://retransmit.dev/openapi.json) | [docs](https://docs.retransmit.dev)