# Telnyx — Full Documentation > Telnyx product guides and tutorials — AI voice assistants, global SMS/MMS, voice APIs, phone numbers, IoT SIM, and programmable networking, all in one place. Complete Telnyx developer documentation, split into per-area full-content files (the combined corpus is ~3.4M characters — far past single-request agent limits). Each link below carries the complete page content for its area; this file holds authentication, quickstart examples, and the map. Lightweight per-area indexes are listed in [llms.txt](https://developers.telnyx.com/llms.txt). ## Use cases - Voice AI agents and IVR: real-time voice assistants combining carrier-grade calling with STT, TTS, and LLM inference on one platform - Programmatic messaging: SMS, MMS, RCS, and WhatsApp for OTP, alerts, and campaigns - Phone numbers: search, order, port, and configure numbers programmatically across global markets - IoT connectivity: SIMs and eSIMs with per-MB data and private wireless - AI inference: OpenAI-compatible chat completions and embeddings hosted on Telnyx GPUs - Networking and storage: private IP networking and S3-compatible cloud storage ## Constraints - Authentication: Bearer API key on every request (create one at https://portal.telnyx.com, or programmatically via https://telnyx.com/agent-signup.md) - Base URL: https://api.telnyx.com/v2 (REST, JSON request/response) - Rate limits are enforced per endpoint — see APIs fundamentals under the Development section - US A2P messaging requires 10DLC registration; some number purchases require country-specific regulatory documents - Webhooks are Ed25519-signed — verify signatures before trusting payloads ## For AI agents - When to use Telnyx: tasks requiring programmable voice or calls, messaging, phone numbers, wireless connectivity, AI inference, or low-latency media - Agent-readable documentation map: https://developers.telnyx.com/development/agent-readable-documentation.md - Clean page Markdown: append `.md` to a developers.telnyx.com documentation URL; interactive browser components are excluded and replaced with text fallbacks or canonical data sources - REST: use the consolidated OpenAPI spec linked below with header `Authorization: Bearer ` - Structured API errors: https://developers.telnyx.com/data/api-errors.json · webhook request payloads and publication selectors: https://developers.telnyx.com/data/webhook-events.json - MCP (API actions): connect to https://api.telnyx.com/v2/mcp (streamable-http, same Bearer auth); discover tools with list_api_endpoints, inspect with get_api_endpoint_schema, then invoke_api_endpoint - MCP (docs search): https://developers.telnyx.com/mcp (no auth) - Credential walkthrough (auth.md convention): https://developers.telnyx.com/auth.md - Authentication, step by step: (1) register at https://telnyx.com/sign-up — or programmatically via https://telnyx.com/agent-signup.md; (2) create a V2 API key at https://portal.telnyx.com/#/app/api-keys; (3) send it on every request as `Authorization: Bearer ` against https://api.telnyx.com/v2; (4) rotate or revoke keys any time on the same portal page - Agent platform configs (AGENTS.md, .cursorrules, .claude/, .windsurf/): https://github.com/team-telnyx/ai - Machine-readable capabilities: https://telnyx.com/ai/capabilities.json · Pricing: https://telnyx.com/pricing.md · Agent fast path: https://telnyx.com/agents/start - Differentiation vs alternatives: https://developers.telnyx.com/compare ## Authentication Every API request authenticates with a Bearer API key: ```bash curl https://api.telnyx.com/v2/available_phone_numbers \ -H "Authorization: Bearer $TELNYX_API_KEY" ``` Create a key in the Mission Control Portal (https://portal.telnyx.com) or programmatically via the agent signup flow (https://telnyx.com/agent-signup.md). ## Quickstart examples Send an SMS: ```bash curl -X POST https://api.telnyx.com/v2/messages \ -H "Authorization: Bearer $TELNYX_API_KEY" \ -H "Content-Type: application/json" \ -d '{"from": "+13125550100", "to": "+13125550101", "text": "Hello from Telnyx"}' ``` Chat completion (OpenAI-compatible): ```bash curl -X POST https://api.telnyx.com/v2/ai/chat/completions \ -H "Authorization: Bearer $TELNYX_API_KEY" \ -H "Content-Type: application/json" \ -d '{"model": "meta-llama/Llama-3.3-70B-Instruct", "messages": [{"role": "user", "content": "Hello"}]}' ``` ## Per-area full documentation - [Development — full content](https://developers.telnyx.com/development/llms-txt-full.md): Account setup, authentication, API fundamentals, SDKs, CLI, MCP servers, and integration guides - [Account setup — full content](https://developers.telnyx.com/development/llms/development-account-setup-llms-full-txt.md) - [APIs fundamentals — full content](https://developers.telnyx.com/development/llms/development-apis-fundamentals-llms-full-txt.md) - [Server-side SDKs — full content](https://developers.telnyx.com/development/llms/development-server-side-sdks-llms-full-txt.md) - [Telnyx CLI — full content](https://developers.telnyx.com/development/llms/development-telnyx-cli-llms-full-txt.md) - [Development Tools — full content](https://developers.telnyx.com/development/llms/development-development-tools-llms-full-txt.md) - [AI — full content](https://developers.telnyx.com/development/llms/ai-llms-full-txt.md): Inference, AI assistants, missions, and LiveKit integrations - [Inference — full content](https://developers.telnyx.com/development/llms/ai-inference-llms-full-txt.md) - [Embedding & RAG — full content](https://developers.telnyx.com/development/llms/ai-embedding-rag-llms-full-txt.md) - [Assistants — full content](https://developers.telnyx.com/development/llms/ai-assistants-llms-full-txt.md) - [LiveKit on Telnyx (Beta) — full content](https://developers.telnyx.com/development/llms/ai-livekit-llms-full-txt.md) - [Compute — full content](https://developers.telnyx.com/development/llms/compute-llms-full-txt.md): Edge compute functions, runtime bindings, stateful actors, and private networking - [Overview — full content](https://developers.telnyx.com/development/llms/compute-overview-llms-full-txt.md) - [Functions — full content](https://developers.telnyx.com/development/llms/compute-functions-llms-full-txt.md) - [Stateful Actors (Beta) — full content](https://developers.telnyx.com/development/llms/compute-stateful-actors-beta-llms-full-txt.md) - [Network — full content](https://developers.telnyx.com/development/llms/compute-network-llms-full-txt.md) - [Storage — full content](https://developers.telnyx.com/development/llms/storage-llms-full-txt.md): S3-compatible cloud storage with buckets, SDKs, and migration from AWS - [Object Storage — full content](https://developers.telnyx.com/development/llms/storage-object-storage-llms-full-txt.md) - [KV — full content](https://developers.telnyx.com/development/llms/storage-kv-llms-full-txt.md) - [SQL (Beta) — full content](https://developers.telnyx.com/development/llms/storage-sql-llms-full-txt.md) - [CloudFS (Beta) — full content](https://developers.telnyx.com/development/llms/storage-cloudfs-beta-llms-full-txt.md) - [Calling — full content](https://developers.telnyx.com/development/llms/calling-llms-full-txt.md): TeXML, SIP trunking, UAC connections, WebRTC, and trusted calling - [Voice API — full content](https://developers.telnyx.com/development/llms/calling-voice-api-llms-full-txt.md) - [TeXML — full content](https://developers.telnyx.com/development/llms/calling-texml-llms-full-txt.md) - [SIP Trunking — full content](https://developers.telnyx.com/development/llms/calling-sip-trunking-llms-full-txt.md) - [UAC Connections — full content](https://developers.telnyx.com/development/llms/calling-uac-connections-llms-full-txt.md) - [WebRTC — full content](https://developers.telnyx.com/development/llms/calling-webrtc-llms-full-txt.md) - [Trusted Calling — full content](https://developers.telnyx.com/development/llms/calling-trusted-calling-llms-full-txt.md) - [Voice — full content](https://developers.telnyx.com/development/llms/voice-llms-full-txt.md): Voice API, speech-to-text, text-to-speech, and voice design - [Overview — full content](https://developers.telnyx.com/development/llms/voice-overview-llms-full-txt.md) - [STT — full content](https://developers.telnyx.com/development/llms/voice-stt-llms-full-txt.md) - [TTS — full content](https://developers.telnyx.com/development/llms/voice-tts-llms-full-txt.md) - [Voice Design — full content](https://developers.telnyx.com/development/llms/voice-voice-design-llms-full-txt.md) - [Messaging — full content](https://developers.telnyx.com/development/llms/messaging-llms-full-txt.md): SMS, MMS, RCS, WhatsApp, short codes, 10DLC compliance, and messaging profiles - [SMS & MMS — full content](https://developers.telnyx.com/development/llms/messaging-sms-mms-llms-full-txt.md) - [Email — full content](https://developers.telnyx.com/development/llms/messaging-email-llms-full-txt.md) - [RCS — full content](https://developers.telnyx.com/development/llms/messaging-rcs-llms-full-txt.md) - [WhatsApp — full content](https://developers.telnyx.com/development/llms/messaging-whatsapp-llms-full-txt.md) - [Numbers — full content](https://developers.telnyx.com/development/llms/numbers-llms-full-txt.md): Phone number search and ordering, porting, regulatory requirements, and identity - [Global Phone Numbers — full content](https://developers.telnyx.com/development/llms/numbers-global-phone-numbers-llms-full-txt.md) - [Porting — full content](https://developers.telnyx.com/development/llms/numbers-porting-llms-full-txt.md) - [Regulatory & Documents — full content](https://developers.telnyx.com/development/llms/numbers-regulatory-documents-llms-full-txt.md) - [Identity — full content](https://developers.telnyx.com/development/llms/numbers-identity-llms-full-txt.md) - [Number Reputation — full content](https://developers.telnyx.com/development/llms/numbers-number-reputation-llms-full-txt.md) - [Wireless — full content](https://developers.telnyx.com/development/llms/wireless-llms-full-txt.md): SIMs, eSIMs, IoT data plans, VoLTE, and wireless messaging - [Overview — full content](https://developers.telnyx.com/development/llms/wireless-overview-llms-full-txt.md) - [SIMs & eSIMs — full content](https://developers.telnyx.com/development/llms/wireless-sims-esims-llms-full-txt.md) - [Data — full content](https://developers.telnyx.com/development/llms/wireless-data-llms-full-txt.md) - [VoLTE — full content](https://developers.telnyx.com/development/llms/wireless-volte-llms-full-txt.md) - [Messaging — full content](https://developers.telnyx.com/development/llms/wireless-messaging-llms-full-txt.md) - [Other APIs — full content](https://developers.telnyx.com/development/llms/other-apis-llms-full-txt.md): Account and billing, video, fax, SETI, OAuth, and platform APIs - [Account & Billing — full content](https://developers.telnyx.com/development/llms/other-apis-account-billing-llms-full-txt.md) - [Video — full content](https://developers.telnyx.com/development/llms/other-apis-video-llms-full-txt.md) - [SETI — full content](https://developers.telnyx.com/development/llms/other-apis-seti-llms-full-txt.md) - [Fax — full content](https://developers.telnyx.com/development/llms/other-apis-fax-llms-full-txt.md) - [OAuth — full content](https://developers.telnyx.com/development/llms/other-apis-oauth-llms-full-txt.md) ## Reliability & Status - Status page: https://status.telnyx.com — live platform status and incident history (incident.io-powered) - Machine-readable status (Statuspage-compatible JSON API): current status and active incidents at https://status.telnyx.com/api/v2/summary.json · recent incident history at https://status.telnyx.com/api/v2/incidents.json · per-component status at https://status.telnyx.com/api/v2/components.json - Incident feeds: RSS at https://status.telnyx.com/history.rss · Atom at https://status.telnyx.com/history.atom - SLA, machine-readable: https://telnyx.com/ai/sla.json (99.99% uptime guarantee, RPO/RTO, credit tiers) · Resilience details: https://telnyx.com/ai/resilience.md - Building for reliability: [rate limiting](https://developers.telnyx.com/development/api-fundamentals/reliability/rate-limiting.md), [command retries](https://developers.telnyx.com/development/api-fundamentals/reliability/command-retries.md), [API error codes](https://developers.telnyx.com/development/api-fundamentals/api-errors.md), [webhook signatures and retries](https://developers.telnyx.com/development/api-fundamentals/webhooks/receiving-webhooks.md) ## OpenAPI Specification - [Telnyx OpenAPI Specification (consolidated)](https://raw.githubusercontent.com/team-telnyx/openapi/master/openapi/spec3.json): Single OpenAPI 3.1 JSON covering every Telnyx REST API surface. ## Code Examples 207 production-ready Python examples covering the full Telnyx platform. Each example includes app.py, README.md (YAML frontmatter), GUIDE.md (tutorial), API.md (endpoint reference), and .env.example. Repository: https://github.com/team-telnyx/telnyx-code-examples ### Voice AI (101) - [Abandoned Cart Recovery](https://github.com/team-telnyx/telnyx-code-examples/tree/main/abandoned-cart-recovery-python) [Voice, AI Inference, Messaging] - [Accounting Firm Tax Season Line](https://github.com/team-telnyx/telnyx-code-examples/tree/main/accounting-tax-season-line-python) [Voice, AI Inference, Messaging] - [After-Hours Nurse Triage](https://github.com/team-telnyx/telnyx-code-examples/tree/main/after-hours-nurse-triage-python) [Voice, AI Inference, Messaging] - [AI After-Hours Emergency Triage](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-after-hours-emergency-triage-python) [Voice AI, AI Inference] - [AI Appointment Reminder](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-appointment-reminder-sms-voice-python) [SMS/MMS, Voice, AI Inference] - [AI Assistant Phone Setup](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-assistant-phone-setup-python) [AI Inference] - [AI Billing Dispute Resolution Agent](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-billing-dispute-resolution-agent-python) [Voice AI, AI Inference] - [AI Call Center Quality Scorer](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-call-center-quality-scorer-python) [AI Inference, Call Recording] - [AI Cold Caller Objection Trainer](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-cold-caller-objection-trainer-python) [Voice, AI Inference] - [AI Competitive Win/Loss Call Analyzer](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-competitive-win-loss-call-analyzer-python) [AI Inference] - [AI Compliance Quiz Phone](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-compliance-quiz-phone-python) [Voice AI, AI Inference] - [AI Customer Winback Caller](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-customer-winback-caller-python) [Voice, AI Inference] - [AI Debt Collection Compliance Agent](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-debt-collection-compliance-agent-python) [Voice, AI Inference] - [AI Event RSVP Phone Line](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-event-rsvp-phone-line-python) [Voice AI, AI Inference] - [AI Hiring Phone Screen](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-hiring-phone-screen-python) [Voice, AI Inference] - [AI Insurance Claims Intake](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-insurance-claims-intake-voice-python) [Voice AI, SMS/MMS, AI Inference] - [AI Language Learning Phone Tutor](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-language-learning-phone-tutor-python) [Voice AI, AI Inference] - [AI Medical Appointment Prep Caller](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-medical-appointment-prep-caller-python) [Voice, AI Inference] - [AI Negotiation Practice Phone](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-negotiation-practice-phone-python) [Voice AI, AI Inference] - [AI Phone Story Hotline](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-phone-story-hotline-python) [Voice AI, AI Inference] - [AI Phone Tree Builder](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-phone-tree-builder-from-description-python) [AI Inference] - [AI Podcast Call-In Show](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-podcast-call-in-show-python) [Voice AI, AI Inference] - [AI-Powered IVR Replacement](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-powered-ivr-replacement-python) [Voice AI, AI Assistants] - [AI Price Quote Phone Agent](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-price-quote-phone-agent-python) [Voice AI, AI Inference] - [AI Property Management Maintenance Line](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-property-management-maintenance-line-python) [Voice AI, SMS/MMS, AI Inference] - [AI Real Estate Showing Scheduler](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-real-estate-showing-scheduler-python) [Voice AI, SMS/MMS, AI Inference] - [AI Restaurant Reservation Voice Agent](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-restaurant-reservation-voice-agent-python) [Voice AI, SMS/MMS, AI Inference] - [AI Sales Call with Live CRM Updates](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-sales-call-with-live-crm-updates-python) [Voice AI, SMS/MMS, AI Inference] - [AI Sales Demo Booking Agent](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-sales-demo-booking-agent-python) [Voice AI, AI Inference] - [AI Standup Facilitator Phone](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-standup-facilitator-phone-python) [Voice AI, AI Inference] - [AI Tech Support Voice Agent](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-tech-support-voice-agent-python) [Voice AI, AI Inference] - [AI Voice Agent with Function Calling](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-voice-agent-with-function-calling-python) [Voice AI, AI Inference] - [AI Voice Memo to Email](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-voice-memo-to-email-python) [Voice AI, SMS/MMS, AI Inference, Call Recording] - [AI Voice Survey Sentiment Tracker](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-voice-survey-sentiment-tracker-python) [Voice AI, AI Inference] - [AI Voicemail Transcription & Forwarding](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-voicemail-transcription-forwarding-python) [Voice AI, SMS/MMS, AI Inference, Call Recording] - [AI Voice-Over Studio](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-voiceover-studio-python) [AI Inference, Cloud Storage, Call Recording] - [Autonomous Outbound Sales Agent](https://github.com/team-telnyx/telnyx-code-examples/tree/main/autonomous-outbound-sales-agent-python) [SMS/MMS, Voice, AI Inference, Number Lookup] - [Branded Caller ID Manager](https://github.com/team-telnyx/telnyx-code-examples/tree/main/branded-caller-id-manager-python) [Branded Calling, CNAM Lookup, Verify] - [Production-ready IVR system using Telnyx Voice API and Flask.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/build-ivr-phone-menu-python) [Voice] - [Build a complete voice AI agent with Telnyx](https://github.com/team-telnyx/telnyx-code-examples/tree/main/build-voice-ai-agent-python) [Voice AI, AI Inference] - [Call Analytics Dashboard API](https://github.com/team-telnyx/telnyx-code-examples/tree/main/call-analytics-dashboard-api-python) [SMS/MMS] - [Production-ready Flask application for call forwarding via Telnyx Voice API.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/call-forwarding-python) [Voice] - [Call Queue with Hold Music](https://github.com/team-telnyx/telnyx-code-examples/tree/main/call-queue-with-hold-music-python) [Cloud Storage, Voice] - [Call Recording AI Summarizer](https://github.com/team-telnyx/telnyx-code-examples/tree/main/call-recording-ai-summarizer-python) [AI Inference, Call Recording] - [Call Sentiment Live Escalation](https://github.com/team-telnyx/telnyx-code-examples/tree/main/call-sentiment-live-escalation-python) [SMS/MMS, AI Inference] - [Production-ready Flask application for Whisper-based call prompts via Telnyx.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/call-whisper-monitoring-python) [AI Assistants, SMS/MMS, Voice, Call Recording] - [Call Whisper & Screen Pop](https://github.com/team-telnyx/telnyx-code-examples/tree/main/call-whisper-screen-pop-python) [Voice, Number Lookup] - [Cloud Storage Call Archive](https://github.com/team-telnyx/telnyx-code-examples/tree/main/cloud-storage-call-archive-python) [Cloud Storage, Voice, Call Recording] - [Cloud Storage Media CDN](https://github.com/team-telnyx/telnyx-code-examples/tree/main/cloud-storage-media-cdn-python) [Cloud Storage, Voice] - [CNAM Caller ID Lookup Enrichment](https://github.com/team-telnyx/telnyx-code-examples/tree/main/cnam-caller-id-lookup-enrichment-python) [Voice AI, Number Lookup] - [Commercial Voice-Over Generator](https://github.com/team-telnyx/telnyx-code-examples/tree/main/commercial-voiceover-generator-python) [AI Inference, SMS/MMS] - [Compliance Call Recorder + AI Auditor](https://github.com/team-telnyx/telnyx-code-examples/tree/main/compliance-call-recorder-ai-auditor-python) [Voice AI, AI Inference, Call Recording] - [Deepfake Voice Detector](https://github.com/team-telnyx/telnyx-code-examples/tree/main/deepfake-voice-detector-python) [Voice, AI Inference, Media Streaming, Call Recording] - [E-commerce Order Status Bot](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ecommerce-order-status-bot-python) [Voice, AI Inference, Messaging] - [Emergency Mass Notification System](https://github.com/team-telnyx/telnyx-code-examples/tree/main/emergency-mass-notification-system-python) [SMS/MMS, Voice] - [Fraud Alert & Verification](https://github.com/team-telnyx/telnyx-code-examples/tree/main/fraud-alert-verification-python) [Voice, Messaging] - [Full-Stack AI Contact Center](https://github.com/team-telnyx/telnyx-code-examples/tree/main/full-stack-ai-contact-center-python) [Voice AI, AI Inference, Call Recording] - [Global Lead Response Engine](https://github.com/team-telnyx/telnyx-code-examples/tree/main/global-lead-response-engine-python) [Voice AI, SMS/MMS, AI Inference, Number Lookup] - [Hotel Guest Services Line](https://github.com/team-telnyx/telnyx-code-examples/tree/main/hotel-guest-services-python) [Voice, AI Inference, Messaging] - [Insurance Claims Intake](https://github.com/team-telnyx/telnyx-code-examples/tree/main/insurance-claims-intake-python) [Voice, AI Inference, Messaging] - [Interview Screen & Scheduler](https://github.com/team-telnyx/telnyx-code-examples/tree/main/interview-screen-scheduler-python) [Voice, AI Inference, Messaging] - [ISV Notification Engine](https://github.com/team-telnyx/telnyx-code-examples/tree/main/isv-notification-engine-python) [Voice, Messaging] - [IVR Prompt Generator](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ivr-prompt-generator-python) [Voice, AI Inference, Cloud Storage] - [Law Firm Client Intake](https://github.com/team-telnyx/telnyx-code-examples/tree/main/law-firm-client-intake-python) [Voice, AI Inference, Messaging] - [Make Outbound Phone Call](https://github.com/team-telnyx/telnyx-code-examples/tree/main/make-outbound-phone-call-python) [Voice, Call Control] - [Media Stream Custom Audio Mixer](https://github.com/team-telnyx/telnyx-code-examples/tree/main/media-stream-custom-audio-mixer-python) [Voice, Media Streaming] - [Media Stream Live Transcription](https://github.com/team-telnyx/telnyx-code-examples/tree/main/media-stream-live-transcription-python) [Media Streaming, Voice] - [Media Stream Voice Cloak](https://github.com/team-telnyx/telnyx-code-examples/tree/main/media-stream-voice-cloak-python) [Voice, Media Streaming] - [Multi-Channel AI Helpdesk with Ticketing](https://github.com/team-telnyx/telnyx-code-examples/tree/main/multi-channel-ai-helpdesk-with-ticketing-python) [Voice AI, SMS/MMS, AI Inference] - [Multi-Channel Appointment Confirmation](https://github.com/team-telnyx/telnyx-code-examples/tree/main/multi-channel-appointment-confirmation-python) [SMS/MMS, Voice] - [Multi-Language Customer Survey](https://github.com/team-telnyx/telnyx-code-examples/tree/main/multi-language-customer-survey-python) [Voice, AI Inference] - [Multi-Number Identity Router](https://github.com/team-telnyx/telnyx-code-examples/tree/main/multi-number-identity-router-python) [Voice] - [Multilingual Voice-Over Kit](https://github.com/team-telnyx/telnyx-code-examples/tree/main/multilingual-voiceover-kit-python) [AI Inference, Cloud Storage] - [Number Lookup Fraud Screener](https://github.com/team-telnyx/telnyx-code-examples/tree/main/number-lookup-fraud-screener-python) [Voice AI, Number Lookup] - [Omnichannel AI Receptionist](https://github.com/team-telnyx/telnyx-code-examples/tree/main/omnichannel-ai-receptionist-python) [Voice AI, SMS/MMS, AI Inference] - [Patient Appointment Engine](https://github.com/team-telnyx/telnyx-code-examples/tree/main/patient-appointment-engine-python) [Voice, AI Inference, Messaging] - [Payment Reminder Escalation](https://github.com/team-telnyx/telnyx-code-examples/tree/main/payment-reminder-escalation-python) [Voice, Messaging] - [Policy Renewal Campaign](https://github.com/team-telnyx/telnyx-code-examples/tree/main/policy-renewal-campaign-python) [Voice, AI Inference, Messaging] - [Post-Service Follow-Up Engine](https://github.com/team-telnyx/telnyx-code-examples/tree/main/post-service-followup-engine-python) [Voice, AI Inference, Messaging] - [Prescription Refill Line](https://github.com/team-telnyx/telnyx-code-examples/tree/main/prescription-refill-line-python) [Voice, AI Inference, Messaging] - [Programmable Hold Experience](https://github.com/team-telnyx/telnyx-code-examples/tree/main/programmable-hold-experience-python) [Cloud Storage, Voice] - [Real-Time Call Intelligence Dashboard](https://github.com/team-telnyx/telnyx-code-examples/tree/main/real-time-call-intelligence-dashboard-python) [Voice AI, AI Inference] - [Production-ready Flask application for call recording via Telnyx Voice API.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/record-phone-calls-python) [Voice, Call Recording] - [Rent Collection Escalation](https://github.com/team-telnyx/telnyx-code-examples/tree/main/rent-collection-escalation-python) [Voice, Messaging] - [Restaurant Reservation & Waitlist](https://github.com/team-telnyx/telnyx-code-examples/tree/main/restaurant-reservation-waitlist-python) [Voice, AI Inference, Messaging] - [Production-ready Flask webhook for handling inbound calls via Telnyx Voice API.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/route-phone-calls-to-ai-agent-python) [Voice] - [Service Booking & Dispatch](https://github.com/team-telnyx/telnyx-code-examples/tree/main/service-booking-dispatch-python) [Voice, AI Inference, Messaging] - [Shift Fill Engine](https://github.com/team-telnyx/telnyx-code-examples/tree/main/shift-fill-engine-python) [Voice, Messaging] - [Smart IVR A/B Tester](https://github.com/team-telnyx/telnyx-code-examples/tree/main/smart-ivr-ab-tester-python) [Voice] - [Production-ready SMS autoresponder using Telnyx webhooks.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/sms-auto-reply-bot-python) [SMS/MMS, Voice] - [Storage Voicemail Archive](https://github.com/team-telnyx/telnyx-code-examples/tree/main/storage-voicemail-archive-python) [Cloud Storage, Voice, Call Recording] - [TeXML Dynamic Call Router](https://github.com/team-telnyx/telnyx-code-examples/tree/main/texml-dynamic-call-router-python) [Voice, Call Recording] - [TeXML Voicemail Drop](https://github.com/team-telnyx/telnyx-code-examples/tree/main/texml-voicemail-drop-python) [Voice] - [Production-ready Flask application for text-to-speech calls via Telnyx.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/text-to-speech-phone-call-python) [Voice] - [Production-ready Flask application for call transfer via Telnyx Voice API.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/transfer-live-phone-calls-python) [Voice] - [Video Voice-Over Replacement](https://github.com/team-telnyx/telnyx-code-examples/tree/main/video-voiceover-replacement-python) [AI Inference, Media Streaming, Cloud Storage] - [Voice Journal Daily Log](https://github.com/team-telnyx/telnyx-code-examples/tree/main/voice-journal-daily-log-python) [Voice AI, AI Inference] - [Voice-to-Slack Bridge](https://github.com/team-telnyx/telnyx-code-examples/tree/main/voice-to-slack-bridge-python) [Voice AI, AI Inference] - [Voice-Verified Identity + 2FA](https://github.com/team-telnyx/telnyx-code-examples/tree/main/voice-verified-identity-2fa-python) [Voice AI, AI Inference, Number Lookup] - [Voice-Over Audition Generator](https://github.com/team-telnyx/telnyx-code-examples/tree/main/voiceover-audition-generator-python) [AI Inference, SMS/MMS, Cloud Storage] - [White-Label Appointment Platform](https://github.com/team-telnyx/telnyx-code-examples/tree/main/white-label-appointment-platform-python) [Voice, AI Inference, Messaging] ### SMS & Messaging (24) - [AI Appointment Booking SMS Flow](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-appointment-booking-sms-flow-python) [SMS/MMS, AI Inference] - [Maintenance Request Dispatch](https://github.com/team-telnyx/telnyx-code-examples/tree/main/maintenance-request-dispatch-python) [AI Inference, Messaging] - [Marketplace Comms Bridge](https://github.com/team-telnyx/telnyx-code-examples/tree/main/marketplace-comms-bridge-python) [AI Inference, Messaging] - [Missions AI Task Runner](https://github.com/team-telnyx/telnyx-code-examples/tree/main/missions-ai-task-runner-python) [AI Inference, Number Lookup, Messaging] - [MMS Photo Inventory Tracker](https://github.com/team-telnyx/telnyx-code-examples/tree/main/mms-photo-inventory-tracker-python) [SMS/MMS, AI Inference] - [MMS Receipt Scanner & Expense Tracker](https://github.com/team-telnyx/telnyx-code-examples/tree/main/mms-receipt-scanner-expense-tracker-python) [SMS/MMS, AI Inference] - [RCS Rich Card Product Catalog](https://github.com/team-telnyx/telnyx-code-examples/tree/main/rcs-rich-card-product-catalog-python) [SMS/MMS, AI Inference] - [Production-ready Flask webhook endpoint for receiving inbound SMS via Telnyx.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/receive-sms-webhook-python) [SMS/MMS] - [Returns Processor](https://github.com/team-telnyx/telnyx-code-examples/tree/main/returns-processor-python) [AI Inference, Messaging] - [Production-ready Flask application for sending bulk SMS via Telnyx.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/send-bulk-sms-python) [SMS/MMS] - [Send MMS Picture Message](https://github.com/team-telnyx/telnyx-code-examples/tree/main/send-mms-picture-message-python) [Messaging] - [Send SMS](https://github.com/team-telnyx/telnyx-code-examples/tree/main/send-sms-python) [Messaging] - [SMS Appointment No-Show Predictor](https://github.com/team-telnyx/telnyx-code-examples/tree/main/sms-appointment-no-show-predictor-python) [SMS/MMS, AI Inference] - [SMS Chatbot with Conversation Memory](https://github.com/team-telnyx/telnyx-code-examples/tree/main/sms-chatbot-with-conversation-memory-python) [SMS/MMS, AI Inference] - [SMS Drip Campaign Engine](https://github.com/team-telnyx/telnyx-code-examples/tree/main/sms-drip-campaign-engine-python) [SMS/MMS, AI Inference] - [SMS Emergency Check-In](https://github.com/team-telnyx/telnyx-code-examples/tree/main/sms-emergency-check-in-python) [SMS/MMS] - [SMS Escape Room Game](https://github.com/team-telnyx/telnyx-code-examples/tree/main/sms-escape-room-game-python) [SMS/MMS, AI Inference] - [SMS Keyword Auto-Responder](https://github.com/team-telnyx/telnyx-code-examples/tree/main/sms-keyword-auto-responder-python) [SMS/MMS] - [SMS Poll Voting System](https://github.com/team-telnyx/telnyx-code-examples/tree/main/sms-poll-voting-system-python) [SMS/MMS] - [SMS Trivia Game Tournament](https://github.com/team-telnyx/telnyx-code-examples/tree/main/sms-trivia-game-tournament-python) [SMS/MMS, AI Inference] - [Production-ready OTP 2FA system with Flask and Telnyx SMS.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/sms-two-factor-auth-python) [Cloud Storage, SMS/MMS, Verify] - [Toll-Free SMS Campaign Manager](https://github.com/team-telnyx/telnyx-code-examples/tree/main/toll-free-sms-campaign-manager-python) [SMS/MMS] - [WhatsApp Order Tracking Notifications](https://github.com/team-telnyx/telnyx-code-examples/tree/main/whatsapp-order-tracking-notifications-python) [SMS/MMS, AI Inference] - [WhatsApp-SMS Bridge](https://github.com/team-telnyx/telnyx-code-examples/tree/main/whatsapp-sms-bridge-python) [SMS/MMS] ### AI Inference (12) - [AI Audiobook Narrator](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-audiobook-narrator-python) [AI Inference, Cloud Storage] - [AI Content Translator](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-content-translator-python) [AI Inference, Media Streaming] - [AI Customer Churn Predictor](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-customer-churn-predictor-python) [AI Inference] - [AI Receptionist with Booking Tools](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-receptionist-with-booking-tools-python) [AI Inference] - [CDR Usage Analytics Dashboard](https://github.com/team-telnyx/telnyx-code-examples/tree/main/cdr-usage-analytics-dashboard-python) [AI Inference] - [E-Learning Course Narrator](https://github.com/team-telnyx/telnyx-code-examples/tree/main/elearning-course-narrator-python) [AI Inference, Cloud Storage] - [Messaging Campaign A/B Test Optimizer](https://github.com/team-telnyx/telnyx-code-examples/tree/main/messaging-campaign-ab-test-optimizer-python) [SMS/MMS, AI Inference] - [Number Lookup Lead Enrichment](https://github.com/team-telnyx/telnyx-code-examples/tree/main/number-lookup-lead-enrichment-python) [AI Inference, Number Lookup] - [Number Reputation Monitor](https://github.com/team-telnyx/telnyx-code-examples/tree/main/number-reputation-monitor-auto-rotate-python) [AI Inference] - [Podcast Episode Repurposer](https://github.com/team-telnyx/telnyx-code-examples/tree/main/podcast-episode-repurposer-python) [AI Inference, SMS/MMS, Media Streaming] - [Podcast Highlight Clipper](https://github.com/team-telnyx/telnyx-code-examples/tree/main/podcast-highlight-clipper-python) [AI Inference, SMS/MMS, Media Streaming, Call Recording] - [Run LLM inference on Telnyx](https://github.com/team-telnyx/telnyx-code-examples/tree/main/run-llm-inference-python) [AI Inference] ### AI Assistants (7) - [AI Assistant Multi-Tool](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-assistant-multi-tool-python) [AI Inference] - [Chat with AI Assistant](https://github.com/team-telnyx/telnyx-code-examples/tree/main/chat-with-ai-assistant-python) [AI Assistants, AI Inference] - [Production-ready Flask application for cloning AI Assistants via Telnyx.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/clone-ai-assistant-python) [AI Assistants] - [Create AI Assistant](https://github.com/team-telnyx/telnyx-code-examples/tree/main/create-ai-assistant-python) [AI Assistants] - [List AI Assistants](https://github.com/team-telnyx/telnyx-code-examples/tree/main/list-ai-assistants-python) [AI Assistants] - [Update AI Assistant](https://github.com/team-telnyx/telnyx-code-examples/tree/main/update-ai-assistant-python) [AI Assistants] - [Webhook Debugger AI Assistant](https://github.com/team-telnyx/telnyx-code-examples/tree/main/webhook-debugger-ai-assistant-python) [AI Inference] ### Conferencing (15) - [AI Conference Moderator](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-conference-moderator-python) [Voice, AI Inference, Conferencing] - [AI Conference Note-Taker](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-conference-note-taker-python) [SMS/MMS, Voice, AI Inference, Conferencing, Call Recording] - [AI Deposition Assistant](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-deposition-assistant-python) [Voice, AI Inference, Conferencing, Media Streaming] - [AI Live Call Participant](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-live-call-participant-python) [Voice, AI Inference, Media Streaming, Conferencing] - [AI Meeting Action Tracker](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-meeting-action-tracker-python) [Voice, AI Inference, Conferencing] - [AI Podcast Post-Producer](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-podcast-post-producer-python) [Voice AI, AI Inference, Conferencing, Call Recording] - [AI Podcast Producer](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-podcast-producer-python) [Voice, AI Inference, Conferencing, Media Streaming, Call Recording] - [AI Sales Coach (Whisper)](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-sales-coach-whisper-python) [Voice, AI Inference, Conferencing, Media Streaming] - [Production-ready Flask application for managing conference calls via Telnyx.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/build-conference-calling-python) [Voice, Conferencing] - [Conference Call with AI Summary](https://github.com/team-telnyx/telnyx-code-examples/tree/main/conference-call-with-ai-summary-python) [Voice AI, AI Inference, Conferencing] - [Conference Live Poll via DTMF](https://github.com/team-telnyx/telnyx-code-examples/tree/main/conference-live-poll-dtmf-python) [Voice, Conferencing] - [Live Podcast Call-In Show](https://github.com/team-telnyx/telnyx-code-examples/tree/main/live-podcast-call-in-python) [Voice, AI Inference, Conferencing, Media Streaming] - [Multi-Party AI Training Call](https://github.com/team-telnyx/telnyx-code-examples/tree/main/multi-party-ai-training-call-python) [Voice, AI Inference, Conferencing] - [Three-Way Call with AI Interpreter](https://github.com/team-telnyx/telnyx-code-examples/tree/main/three-way-ai-interpreter-python) [Voice, AI Inference, Conferencing] - [Warm Transfer with AI Briefing](https://github.com/team-telnyx/telnyx-code-examples/tree/main/warm-transfer-ai-briefing-python) [Voice, AI Inference, Conferencing] ### SIP Trunking (6) - [Production-ready Flask application for SIP codec configuration via Telnyx.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/configure-sip-codecs-python) [SIP Trunking] - [Flask application for managing inbound SIP routing with Telnyx.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/inbound-sip-routing-python) [SIP Trunking, Voice] - [Setup SIP Trunk](https://github.com/team-telnyx/telnyx-code-examples/tree/main/setup-sip-trunk-python) [SIP Trunking] - [Production-ready SIP failover routing system with Flask and Telnyx.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/sip-failover-routing-python) [SIP Trunking] - [SIP Load Balancer Health Check](https://github.com/team-telnyx/telnyx-code-examples/tree/main/sip-load-balancer-health-check-python) [SIP Trunking] - [SIP Trunking Failover Monitor](https://github.com/team-telnyx/telnyx-code-examples/tree/main/sip-trunking-failover-monitor-python) [SMS/MMS, AI Inference] ### WebRTC (3) - [Click-to-Call WebRTC with AI Assist](https://github.com/team-telnyx/telnyx-code-examples/tree/main/click-to-call-webrtc-with-ai-assist-python) [AI Inference] - [WebRTC AI Interpreter for Live Calls](https://github.com/team-telnyx/telnyx-code-examples/tree/main/webrtc-ai-interpreter-live-calls-python) [Voice AI, AI Inference] - [Production-ready WebRTC calling application with Telnyx Voice API and FastAPI.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/webrtc-browser-calling-python) [Voice, WebRTC] ### IoT & Wireless (10) - [Production-ready Flask application for SIM card activation via Telnyx.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/activate-sim-card-python) [IoT/SIM] - [IoT Fleet Alert Escalation](https://github.com/team-telnyx/telnyx-code-examples/tree/main/iot-fleet-alert-escalation-python) [SMS/MMS, Voice, AI Inference, Conferencing] - [IoT Panic Button Voice Alert](https://github.com/team-telnyx/telnyx-code-examples/tree/main/iot-panic-button-voice-alert-python) [SMS/MMS, Voice] - [IoT Smart Building Voice Control](https://github.com/team-telnyx/telnyx-code-examples/tree/main/iot-smart-building-voice-control-python) [Voice AI, AI Inference, Call Recording] - [Production-ready Flask application for monitoring SIM card](https://github.com/team-telnyx/telnyx-code-examples/tree/main/monitor-iot-data-usage-python) [IoT/SIM] - [Production-ready Flask application for eSIM provisioning via Telnyx.](https://github.com/team-telnyx/telnyx-code-examples/tree/main/provision-esim-python) [IoT/SIM] - [SIM Fleet Data Usage Anomaly Detector](https://github.com/team-telnyx/telnyx-code-examples/tree/main/sim-fleet-data-usage-anomaly-detector-python) [SMS/MMS, AI Inference] - [Production-ready Flask application for device location](https://github.com/team-telnyx/telnyx-code-examples/tree/main/track-iot-device-location-python) [IoT/SIM, Verify] - [Voice-Activated IoT Command](https://github.com/team-telnyx/telnyx-code-examples/tree/main/voice-activated-iot-command-python) [Voice AI, AI Inference, Call Recording] - [Wireless Fleet Activation Portal](https://github.com/team-telnyx/telnyx-code-examples/tree/main/wireless-fleet-activation-portal-python) [IoT/SIM] ### Numbers & Porting (7) - [Bulk Number Validation & Cleaner](https://github.com/team-telnyx/telnyx-code-examples/tree/main/bulk-number-validation-cleaner-python) [Number Lookup] - [Number Porting Status Tracker](https://github.com/team-telnyx/telnyx-code-examples/tree/main/number-porting-status-tracker-python) [SMS/MMS] - [Number Search and Purchase API](https://github.com/team-telnyx/telnyx-code-examples/tree/main/number-search-and-purchase-api-python) [Numbers] - [Number Warmup & Reputation Builder](https://github.com/team-telnyx/telnyx-code-examples/tree/main/number-warmup-reputation-builder-python) [SMS/MMS] - [Porting LOA Automation](https://github.com/team-telnyx/telnyx-code-examples/tree/main/porting-loa-automation-python) [Missions, Number Porting] - [Porting Order Tracker Dashboard](https://github.com/team-telnyx/telnyx-code-examples/tree/main/porting-order-tracker-dashboard-python) - [Smart Number Geo-Assignment](https://github.com/team-telnyx/telnyx-code-examples/tree/main/smart-number-geo-assignment-python) [Numbers] ### Video (4) - [AI Video Dubbing Pipeline](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-video-dubbing-pipeline-python) [AI Inference, Media Streaming] - [Video Room AI Meeting Moderator](https://github.com/team-telnyx/telnyx-code-examples/tree/main/video-room-ai-meeting-moderator-python) [AI Inference, Call Recording] - [Video Room AI Moderator](https://github.com/team-telnyx/telnyx-code-examples/tree/main/video-room-ai-moderator-python) [AI Inference, Call Recording] - [Video Webinar Recording Manager](https://github.com/team-telnyx/telnyx-code-examples/tree/main/video-webinar-recording-manager-python) [AI Inference, Call Recording] ### Fax (2) - [Fax to AI Document Processor](https://github.com/team-telnyx/telnyx-code-examples/tree/main/fax-to-ai-document-processor-python) [SMS/MMS, AI Inference] - [Fax-to-Structured-Data Pipeline](https://github.com/team-telnyx/telnyx-code-examples/tree/main/fax-to-structured-data-pipeline-python) [AI Inference] ### Edge Compute (3) - [AI Assistant Knowledge Base](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-assistant-knowledge-base-python) [AI Inference] - [Edge Compute Webhook Proxy](https://github.com/team-telnyx/telnyx-code-examples/tree/main/edge-compute-webhook-proxy-python) [Edge Compute, Voice, Messaging] - [MCP Server on Edge Compute](https://github.com/team-telnyx/telnyx-code-examples/tree/main/edge-mcp-server-deploy-python) [Edge Compute, Messaging, Numbers, AI Inference] ### Networking (2) - [Global IP Failover Monitor](https://github.com/team-telnyx/telnyx-code-examples/tree/main/global-ip-failover-monitor-python) [Networking] - [WireGuard Private Voice Network](https://github.com/team-telnyx/telnyx-code-examples/tree/main/wireguard-private-voice-network-python) [Networking] ### Verify (2) - [Verify Multi-Channel Auth](https://github.com/team-telnyx/telnyx-code-examples/tree/main/verify-multi-channel-auth-python) [Verify, WhatsApp] - [Verify Phone Number OTP Flow](https://github.com/team-telnyx/telnyx-code-examples/tree/main/verify-phone-number-otp-flow-python) [Verify] ### Migration (3) - [Migrate from ElevenLabs](https://github.com/team-telnyx/telnyx-code-examples/tree/main/migrate-from-elevenlabs-python) [AI Assistants, Migration] - [Migrate from Twilio](https://github.com/team-telnyx/telnyx-code-examples/tree/main/migrate-from-twilio-python) [Migration, Number Porting, SMS/MMS, Voice] - [Migrate from Vapi](https://github.com/team-telnyx/telnyx-code-examples/tree/main/migrate-from-vapi-python) [Migration] ### Other (6) - [Ai Real Time Translation Bridge](https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-real-time-translation-bridge-python) - [Billing Anomaly Detector](https://github.com/team-telnyx/telnyx-code-examples/tree/main/billing-anomaly-detector-python) [CDR, SMS/MMS] - [E911 Address Validator](https://github.com/team-telnyx/telnyx-code-examples/tree/main/e911-address-validator-python) [E911] - [Hosted Messaging Campaign Manager](https://github.com/team-telnyx/telnyx-code-examples/tree/main/hosted-messaging-campaign-manager-python) [SMS/MMS] - [Missions Workflow Orchestrator](https://github.com/team-telnyx/telnyx-code-examples/tree/main/missions-workflow-orchestrator-python) [SMS/MMS, Verify, Number Porting] - [x402 USDC Account Funder](https://github.com/team-telnyx/telnyx-code-examples/tree/main/x402-usdc-account-funder-python) [x402 Payments]