Developers

Build With the Xtel API

Integrate voice, SMS, and number management into your applications with our powerful REST API.

search_numbers.py
import requests

API_KEY = "your_api_key_here"
BASE_URL = "https://thextel.com/api"

# Search for available London numbers
response = requests.get(
    f"{BASE_URL}/numbers/search",
    headers={"Authorization": f"Bearer {API_KEY}"},
    params={"city": "London", "limit": 5}
)

numbers = response.json()["numbers"]
for num in numbers:
    print(f"{num['formatted']} - {num['city']}")

RESTful API

Clean, well-documented REST endpoints for all Xtel features.

Webhooks

Real-time event notifications for calls, voicemails, and SMS.

OAuth 2.0

Industry-standard authentication with API keys and bearer tokens.

Low Latency

Sub-100ms response times with 99.99% uptime SLA.

Scalable

Handle thousands of concurrent calls with auto-scaling infrastructure.

SDKs

Official SDKs for Python, Node.js, PHP, and more.

API Endpoints

GET/api/numbers/search
POST/api/twilio/provision
POST/api/dashboard/call-forwarding/{id}
GET/api/dashboard/call-logs
GET/api/dashboard/analytics
POST/api/dashboard/messages/send
GET/api/dashboard/voicemails
POST/api/dashboard/ivr/{id}

API Access Requires Enterprise Plan

Full API access is available on the Enterprise plan at £49.99/month.

  • Unlimited API calls
  • Webhook support
  • Dedicated support
  • SLA guarantee

Made with Emergent