Your code runs where your calls land.
Cloudflare optimized edge compute for web workloads. Telnyx built edge compute for agents. Both have functions, KV, stateful compute, and object storage. Telnyx adds inference on owned GPUs and the communication channels agents use to reach people: voice, messaging, email, and wireless. All on carrier infrastructure that terminates phone calls in 30+ countries.
14,000+ INDUSTRY-LEADING COMPANIES choose telnyx
Carrier infrastructure that terminates phone calls in 30+ countries. Your code runs where your calls land, not where content caches.
CDN infrastructure optimized for content delivery. Workers run across 300+ edge locations, but compute is secondary to caching.
Cloudflare uses Wrangler. Telnyx uses the telnyx-edge CLI. Containerized HTTP servers in TypeScript, JavaScript, Go, Python, or Java. Ship your first function in minutes.
TypeScript
import * as http from "node:http";
const server = http.createServer((req, res) => {
if (req.url === "/health") {
res.writeHead(200); res.end(); return;
}
res.writeHead(200, { "Content-Type": "application/json" });
res.end(JSON.stringify({ message: "Hello from Telnyx Edge!" }));
});
server.listen(process.env.PORT || 8080);Python
from function import app
@app.handler
def handle(request):
return {"message": "Hello from Telnyx Edge!"}Go
package function
import (
"encoding/json"
"net/http"
)
func Handle(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(map[string]string{
"message": "Hello from Telnyx Edge!",
})
}Infrastructure that connects agents to the real world. Functions, state, storage, inference, voice, and messaging on one carrier network.
Start with 1M free tokens per month. Deploy your first edge function in minutes.
Both platforms support JavaScript and TypeScript functions. Telnyx Functions also supports Go, Python, and Java. Migration is straightforward for HTTP-based workloads. Your functions run as containerized servers, so you can bring existing code with minimal changes.