Skip to main content

Quickstart

Step 1: Create an Account

Sign up at orbit.devotel.io. No credit card required.

Step 2: Get Your API Key

Navigate to Settings > API Keys and create a new key.

Step 3: Send Your First SMS

curl -X POST https://orbit-api.devotel.io/api/v1/messages/sms \
  -H "X-API-Key: dv_live_sk_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "to": "+14155552671",
    "from": "+14155551234",
    "body": "Hello from Orbit!"
  }'

Step 4: Check the Response

{
  "data": {
    "message_id": "msg_abc123",
    "status": "queued",
    "channel": "sms"
  },
  "meta": {
    "request_id": "req_xyz789",
    "timestamp": "2026-03-08T00:00:00Z"
  }
}
Congratulations! You’ve sent your first message with Orbit.