For AI agents: a documentation index is available at https://docs.parallel.ai/llms.txt. The full text of all docs is at https://docs.parallel.ai/llms-full.txt. You may also fetch any page as Markdown by appending
This guide maps the request you make today to its Parallel Search equivalent. Parallel Search takes keyword .md to its URL or sending Accept: text/markdown.search_queries, plus an optional natural language objective, and returns ranked, LLM-optimized excerpts in a single call. search_queries is the only required field, so most migrations are a one-field change. Picking a mode is optional; requests default to advanced.
Start with one field
Exa, Tavily, and SERP APIs all center on a single query string. The fastest migration is to pass that string as one entry insearch_queries. That alone is a complete, valid request, since mode is optional and defaults to advanced:
"mode": "turbo". For better results, also add an optional objective, a natural language description of your full intent, and split the query into 2-3 short keyword queries:
From Exa
Before and after:
advanced_settings knobs only when you have a specific product constraint. Restrictive settings can reduce result quality.
From Tavily
Tavily’ssearch_depth tiers map one-to-one onto Parallel modes.
Before and after:
x-api-key header rather than Authorization: Bearer, so a request that keeps the Tavily-style Bearer header returns 401.
From a SERP API
A SERP API returns a ranked list of links and snippets, but you must make subsequent fetches to extract usable information. Parallel Search combines everything into a single call. Instead of links you fetch and process, you get ranked, compressed excerpts sized for a model, so there is no fetch round and no chunking or ranking to build yourself. If a workflow still needs a specific page’s full contents, use the Extract API.- Python
- cURL
You search, then fetch and process each result in your own code:Parallel does it in one call:
From built-in model search
“Built-in model search” splits into two cases that migrate differently. Building on the API. If you call a provider’s hosted search tool in your own app (for example OpenAI’sweb_search in the Responses API), the provider runs the search inside its own walls. Migrate by registering Parallel Search as a function tool your app executes, which gives you mode control (Turbo today), the excerpts, and the provider choice.
What you parse now
Parallel returns aresults array. Each item has a url, title, publish_date, and excerpts (the compressed, relevant snippets your model reads), with a top-level warnings field worth checking on early calls:
Verify your migration
Before moving production traffic, run your top queries in the Playground and start with the mapped mode. On your first calls, check the responsewarnings field for any parameters that were adjusted or ignored, and confirm Pricing and Rate Limits for your volume.