Skip to main content

Frequently Asked Questions

General

What is Orbit?

Orbit is Devotel’s Communications Platform as a Service (CPaaS). It provides APIs for SMS, WhatsApp, RCS, Viber, Email, and Voice — plus AI-native features like autonomous agents, visual flow builders, and intelligent routing.

What channels does Orbit support?

Orbit supports six communication channels:
  • SMS — Global coverage in 190+ countries
  • WhatsApp — Business API with template and session messaging
  • RCS — Rich messaging on Android devices
  • Viber — Popular in Eastern Europe and Southeast Asia
  • Email — Transactional and marketing email
  • Voice — Outbound/inbound calls, SIP trunking, IVR, and AI voice agents

Where is Orbit hosted?

Orbit runs on Google Cloud Platform (GKE Autopilot) in the europe-west1 region (Belgium). Data is stored in Cloud SQL PostgreSQL 16 with at-rest encryption.

Authentication

How do I get an API key?

  1. Sign up at orbit.devotel.io
  2. Navigate to Settings > API Keys
  3. Click Create Key
  4. Copy and securely store the key — it’s only shown once

What’s the difference between live and test keys?

Key TypePrefixEnvironmentReal Messages
Live Secretdv_live_sk_ProductionYes
Test Secretdv_test_sk_SandboxNo (simulated)
Publicdv_live_pk_Client-sideLimited read-only

Can I use the same key across multiple applications?

Yes, but we recommend creating separate keys for each application or service for better security and audit tracing. You can create unlimited API keys.

Messaging

What phone number format does Orbit use?

All phone numbers must be in E.164 format: +[country code][number]. Examples:
  • US: +14155552671
  • UK: +447911123456
  • Turkey: +905551234567

How are SMS messages billed?

SMS messages are billed per segment:
  • GSM-7 encoding (standard characters): 160 chars per segment, 153 for multi-part
  • Unicode (emoji, non-Latin scripts): 70 chars per segment, 67 for multi-part
Each segment counts as one message against your plan or credits.

What happens if a message fails?

Failed messages can be retried using POST /v1/messages/{id}/retry. The original message parameters are reused. Orbit also supports automatic retry through campaign settings.

Do I need 10DLC registration for US SMS?

Yes. All Application-to-Person (A2P) SMS to US numbers requires 10DLC registration through The Campaign Registry. See our 10DLC guide for step-by-step instructions.

What is the maximum message size?

ChannelLimit
SMS1,600 characters (multi-segment)
WhatsApp4,096 characters
RCS8,000 characters
Email25 MB (including attachments)

Voice

What codecs does Orbit support?

Orbit supports OPUS, PCMU (G.711 mu-law), and PCMA (G.711 A-law). OPUS is recommended for the best quality at lower bandwidth.

Can I bring my own SIP trunk?

Yes. Connect your existing carrier via SIP trunking. Orbit supports TLS/SRTP encryption and standard SIP authentication. See the Voice API documentation.

How do AI voice agents work?

Orbit’s voice agents combine:
  1. STT (Deepgram Nova-3) — converts caller speech to text
  2. LLM (via Portkey gateway) — generates a response
  3. TTS (Cartesia Sonic Turbo) — speaks the response back
The entire round-trip typically completes in under 500ms.

AI Agents

What LLM models can I use?

Orbit supports any model available through the Portkey LLM gateway, including:
  • OpenAI: GPT-4o, GPT-4o-mini
  • Anthropic: Claude Sonnet 4, Claude Haiku
  • Google: Gemini 2.0 Flash, Gemini 2.0 Pro

Can agents use external tools?

Yes. Define custom tools with JSON Schema parameters. The agent will invoke tools during conversations to look up data, take actions, or fetch information from your systems.

What are guardrails?

Guardrails are rules that validate AI agent outputs before they reach end users. Powered by Portkey, they can enforce:
  • No PII exposure
  • No profanity or harmful content
  • Brand voice consistency
  • Factual accuracy checks

Billing

What plans are available?

PlanPriceSMS IncludedAI Conversations
StarterFree10025
Growth$99/mo5,000500
Business$499/mo25,0005,000
EnterpriseCustomUnlimitedUnlimited

What happens if I exceed my plan limits?

Usage beyond plan limits is charged at per-unit overage rates. You can also use prepaid credits for predictable pay-as-you-go pricing. Configure auto-reload to prevent service interruption.

How do prepaid credits work?

Credits are purchased in advance and consumed for messages, voice minutes, and agent invocations beyond your plan’s included usage. Credits never expire and can be topped up via API or dashboard.

Webhooks

How do I verify webhook signatures?

Every webhook includes an X-Devotel-Signature header containing an HMAC-SHA256 signature. Verify it by computing the HMAC of the raw request body using your webhook secret. See the Security guide for code examples.

What happens if my webhook endpoint is down?

Orbit retries failed webhook deliveries on an exponential schedule: 1m, 5m, 30m, 2h, 8h, 24h. After all retries are exhausted, the event is sent to a dead letter queue. You can review failed deliveries in the dashboard.

Can I subscribe to specific event types?

Yes. When creating a webhook, specify the events you want to receive:
{ "events": ["message.delivered", "message.failed", "call.completed"] }
Use ["*"] to subscribe to all events.

SDKs

Which SDKs are available?

LanguagePackageStatus
Node.js/TypeScript@devotel/sdkGA
Pythonorbit-pythonGA
Goorbit-goGA
Javaorbit-javaGA
PHPorbit-phpGA
Rubyorbit-rubyGA
C# / .NETDevotel.OrbitGA

Do I need an SDK to use Orbit?

No. The Orbit API is a standard REST API. SDKs are optional convenience wrappers. You can use curl, fetch, httpx, or any HTTP client.

Support

How do I contact support?

  • Email: support@devotel.io
  • Dashboard: In-app chat via the help widget
  • Enterprise: Dedicated Slack channel and account manager

Where can I check service status?

Visit status.devotel.io for real-time platform status, incident history, and maintenance schedules.

How do I report a security vulnerability?

Email security@devotel.io. We respond within 24 hours and follow responsible disclosure practices.