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/searchPOST
/api/twilio/provisionPOST
/api/dashboard/call-forwarding/{id}GET
/api/dashboard/call-logsGET
/api/dashboard/analyticsPOST
/api/dashboard/messages/sendGET
/api/dashboard/voicemailsPOST
/api/dashboard/ivr/{id}