Search the web, fetch page content, and run deep research through one API. Same Telnyx key you use for voice, messaging, and inference. No separate search provider account.

Voice agents, research agents, and competitive intelligence all need the same primitives.

Give your voice agent live web access. Look up flight status, check store hours, pull current prices, all in the same call.

Run multi-source research with citations. Background mode handles long tasks; poll the task_id when ready.

Track competitor pages, pricing, and announcements. Use include_domains to scope, freshness to control recrawl.

Fetch URLs and convert to clean Markdown for RAG pipelines, summaries, or downstream LLM calls.
Every endpoint uses your existing Telnyx API key as a Bearer token.
POST /v1/web_search
Search the web. Params: query, count (1-100), country, safesearch, freshness, include_domains, exclude_domains, livecrawl.
POST /v1/contents
Fetch page content. Params: urls (array, max 20), formats (html|markdown|metadata), crawl_timeout, max_age.
POST /v1/research
Run a research task. Params: query, research_effort (lite|standard|deep), max_sources, background (boolean).
GET /v1/research/:task_id
Poll a background research task. Returns status and the cited answer when ready.
Search, fetch, and research through the same Bearer token you already use.
# 1. Web search with snippets
curl -X POST "https://web-search.telnyx.com/v1/web_search" \
-H "Authorization: Bearer $TELNYX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "latest Telnyx voice AI pricing",
"count": 5,
"country": "US",
"safesearch": "moderate"
}'
# 2. Fetch page content
curl -X POST "https://web-search.telnyx.com/v1/contents" \
-H "Authorization: Bearer $TELNYX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"urls": ["https://telnyx.com/pricing/voice-ai-agents"],
"formats": ["markdown"]
}'
# 3. Deep research with citations
curl -X POST "https://web-search.telnyx.com/v1/research" \
-H "Authorization: Bearer $TELNYX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "Compare Telnyx vs Twilio voice API pricing in 2026",
"research_effort": "standard",
"max_sources": 10
}'Web Search API is one part of a full platform for agent infrastructure. Same API key, same network, same bill.

Run open-weight and proprietary models on Telnyx GPUs. No separate API key, no separate bill.
Learn more
Build and deploy low-latency Voice AI agents in minutes on a full-stack, conversational AI platform.
Learn more
Deploy containerized code to the edge with one command. Any language, any runtime, bindings to storage and the Telnyx API.
Learn more
Discover low-latency, cost-effective storage for your AI applications. Store data and embeddings in one place.
Learn moreWeb Search API is live. Try it with your Telnyx API key.
Web Search API is live. Try it with your Telnyx API key.
A Telnyx-owned API for web search, page content retrieval, and deep research. Uses your existing Telnyx API key. See the docs for full API reference.