Threll.ai
Threll for Developers

Build with Threll

Integrate autonomous voice agents into your product. Use the REST API to start and inspect phone calls, and webhooks to react to call events in real time — from live transcripts to mid-call tool dispatch.

BASE URL https://api.threll.io
Your first request
curl https://api.threll.io/v1/accounts/9c3e8f02-7a14-4b62-bc59-1d8e5fa3027b \
  -H "x-api-key: $THRELL_API_KEY"
const res = await fetch('https://api.threll.io/v1/accounts/9c3e8f02-7a14-4b62-bc59-1d8e5fa3027b', {
  headers: { 'x-api-key': process.env.THRELL_API_KEY },
});
const account = await res.json();
import os, requests

res = requests.get(
    "https://api.threll.io/v1/accounts/9c3e8f02-7a14-4b62-bc59-1d8e5fa3027b",
    headers={"x-api-key": os.environ["THRELL_API_KEY"]},
)
account = res.json()

Guides

Step-by-step walkthroughs, from your first authenticated request to a complete two-way integration.

API Reference

Complete reference for every endpoint, event, and payload.

How the pieces fit together

A typical integration uses both directions:

If you only need to start calls and read results afterwards, the REST API alone is enough. Add webhooks when you want live transcripts, lifecycle updates, or to let workers call into your own systems mid-conversation.

Questions? Reach your Threll contact or visit threll.ai.