Most edge compute platforms run your code and stop. You wire up storage, state, inference, and telephony from separate vendors. Functions runs as containers on infrastructure Telnyx owns and operates. KV, Stateful Actors, Object Storage, and Inference are connected through bindings, not API calls.
Write a server. Run telnyx-edge ship. Get a public URL.
Platform architecture
Functions is the compute entry point. KV, Stateful Actors, Object Storage, Inference, and the Telnyx API are all on the same owned infrastructure, connected through bindings.
Any runtime, any language
Functions run as containers, not V8 isolates. TypeScript, Go, Python, Java, Rust, or any runtime that runs in a container. Use any package, any system library, any framework. No sandbox limitations.
Zero-credential bindings
Access KV, Stateful Actors, Object Storage, and Inference through bindings, not API calls. No credentials in your code, no auth headers, no secret rotation. The platform wires services together at the infrastructure layer.
Global edge distribution
Deploy once, run at every edge site. The platform handles routing to the nearest PoP automatically. No multi-region config, no DNS management, no cold-start regions. Your code is everywhere your users are.
Automatic TLS and custom domains
Every function gets a public URL with TLS by default. Bring your own domain and the platform handles certificates, renewal, and routing. No nginx config, no certbot, no load balancer setup.
Pre-authenticated telecom access
A built-in binding connects to the Telnyx Voice and Messaging API. Make calls, send messages, and build voice agents from inside a function without managing API keys. Telecom is a function call, not an integration project.
Each binding is a zero-credential, zero-hop connection to another platform component. Declare it in your config, access it through env, done.
KV
Session data, cached responses, feature flags. Read and write from inside your function with no API key, no SDK, no network hop.
Stateful Actors
Per-entity state. Delegate read-modify-write operations to an actor instance through a binding. The actor handles concurrency so your function does not have to.
Object Storage
File access. Read and write files from inside your function. Same infrastructure, no credentials, no hop.
Inference
Model calls. Invoke frontier open-source models on owned GPUs from your function. Sub-200ms round-trip when function and model are in the same facility.
Telnyx API
Voice, messaging, and calls. Pre-authenticated access to make calls, send messages, and trigger voice AI pipelines without an API key in your code.