July 27, 2026

# How to switch from Tavily to Parallel Search API

Reading time: 3 min

Tavily and Parallel solve the same problem: give an agent web content it can reason from, not just links. The migration is mostly a rename, because the two APIs agree on what a search response should contain. Where they differ is the billing unit (Tavily meters credits that vary by search depth, Parallel meters requests at a flat rate per mode) and a Tavily basic search costs **$5 to $8 per 1,000** depending on your plan, against **$1 per 1,000** for Parallel Search Turbo.

This guide covers what the numbers actually look like, how each parameter maps, and what to watch for.

## **What the two cost**

Tavily sells credits. A basic search costs 1 credit and an advanced search costs 2, and the price per credit falls as you commit to a larger plan: $0.008 pay-as-you-go, $0.0075 on Project at $30 a month for 4,000 credits, down to $0.005 on Growth at $500 a month for 100,000. The free tier is 1,000 credits a month with no card. Extraction, crawling, and Tavily Research all draw on the same balance, with Research using dynamic pricing between 4 and 250 credits per request depending on the model.

Parallel charges per request at a flat rate per mode, with no plan and no credits:

WorkloadTavilyParallel
Basic search, 1,000 requests$5.00 to $8.00$1.00 (Turbo)
Advanced search, 1,000 requests$10.00 to $16.00$5.00 (Advanced)
Extraction, 1,000 URLs~$4.00$1.00
Free tier1,000 credits/month$5/month credit (5,000 Turbo searches)

One credit-model detail worth knowing before you compare: Tavily's auto_parameters flag can promote a search to advanced depth on its own, which doubles the credit cost of that request. If you have it enabled and have not explicitly pinned search_depth to basic, your real per-search cost is somewhere between the two rows above.

_Note: For the latest pricing, always check official documentation._

## **Parameter mapping**

TavilyParallel
queryobjective (natural language), optionally with search_queries
search_depth: "basic"mode: "turbo" or "basic"
search_depth: "advanced"mode: "advanced" (the default)
max_results10 results included; more billed at $1 per 1,000 results
include_domains / exclude_domainssource_policy include / exclude
time_rangesource_policy freshness date
chunks_per_source, include_raw_contentexcerpts.max_chars_per_result and max_chars_total
Tavily ExtractExtract API
Tavily ResearchTask API (nine processors) or Responses API

The one genuine shift in thinking: Tavily takes a query string, Parallel takes an objective. You get better results writing "find the current enterprise pricing and rate limits for vendor X" than pasting in the keywords you would have given a search engine. If you already have well-tuned keyword queries, pass them as search_queries alongside the objective rather than throwing them away.

## **What does not map**

  • - topic: "news" or "finance". Parallel has no topic switch. Use a Source Policy with a domain list, or an objective that states the domain of interest.
  • - include_answer. Parallel's Search API returns results, not a synthesized answer. Use the Responses API ($10 to $250 per 1,000 by reasoning effort) for that shape.
  • - include_images: no equivalent.
  • - exact_match, no direct equivalent; state the required phrase in the objective.
  • - Tavily Crawl. Parallel has no site crawler. Keep Tavily, or use a dedicated crawler, for that job.

Running the other way, Parallel adds a Fetch Policy that forces a live crawl instead of the index, a Task API with per-field citations, reasoning, and calibrated confidence scores, plus FindAll, Entity Search, and Monitor.

## **The code change**

### before: tavily
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from tavily import TavilyClient client = TavilyClient(api_key=os.environ["TAVILY_API_KEY"]) response = client.search( query="enterprise pricing for vendor X", search_depth="advanced", max_results=10, include_domains=["vendorx.com"], )```
from tavily import TavilyClient
 
client = TavilyClient(api_key=os.environ["TAVILY_API_KEY"])
 
response = client.search(
 
query="enterprise pricing for vendor X",
 
search_depth="advanced",
 
max_results=10,
 
include_domains=["vendorx.com"],
 
)
```
### after: parallel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from parallel import Parallel client = Parallel(api_key=os.environ["PARALLEL_API_KEY"]) search = client.beta.search( objective="find current enterprise pricing for vendor X", mode="advanced", excerpts={"max_chars_per_result": 10000}, source_policy={"include_domains": ["vendorx.com"]}, )```
from parallel import Parallel
 
client = Parallel(api_key=os.environ["PARALLEL_API_KEY"])
 
search = client.beta.search(
 
objective="find current enterprise pricing for vendor X",
 
mode="advanced",
 
excerpts={"max_chars_per_result": 10000},
 
source_policy={"include_domains": ["vendorx.com"]},
 
)
```

## **Rate limits and compliance**

Parallel's defaults are 600 requests per minute for Search, Extract, and Entity Search, 300 for Monitor, and 300 per hour for FindAll runs, with GET polling excluded and custom limits available on enterprise plans. Parallel is SOC 2 Type 2 certified, offers a Data Processing Addendum and zero data retention, and commits contractually to not training on customer data.

## **Get started**

Start on Turbo and compare against your current Tavily basic searches on a sample of real production queries. Both return excerpts, so the comparison is like for like. If quality drops on multi-hop questions, move those calls to Advanced, which is still at or below Tavily's advanced rate on every plan. The $5 monthly free credit covers 5,000 Turbo searches, which is usually enough to run the evaluation before you change anything.

**Related reading: **Tavily vs. Parallel[Tavily vs. Parallel](/articles/tavily-vs-parallel-search) · Switching from Exa[Switching from Exa](/articles/exa-to-parallel-search-api) · Switching from Firecrawl[Switching from Firecrawl](/articles/firecrawl-to-parallel-search-api).

Parallel avatar

By Parallel

July 27, 2026

## Related Articles8

Parallel avatar

- [OpenClaw vs Claude Code: which AI agent should you actually use?](https://parallel.ai/articles/openclaw-vs-claude-code-which-ai-agent-should-you-actually-use)

Reading time: 12 min
Parallel avatar

- [The best Google Custom Search API alternative for AI agents](https://parallel.ai/articles/the-best-google-custom-search-api-alternative-for-ai-agents)

Reading time: 8 min
Parallel avatar

- [Gemini CLI vs Claude Code: which terminal coding agent should you use?](https://parallel.ai/articles/gemini-cli-vs-claude-code-which-terminal-coding-agent-should-you-use)

Reading time: 11 min
Parallel avatar

- [OpenCode vs Claude Code: a 2026 comparison for developers](https://parallel.ai/articles/opencode-vs-claude-code-a-2026-comparison-for-developers)

Reading time: 10 min
Parallel avatar

- [The best OpenClaw alternatives in 2026 (and how to make any of them reliable)](https://parallel.ai/articles/the-best-openclaw-alternatives-in-2026-and-how-to-make-any-of-them-reliable)

Reading time: 11 min
Parallel avatar

- [Claude Code vs Cursor: how to choose your AI coding tool in 2026](https://parallel.ai/articles/claude-code-vs-cursor-how-to-choose-your-ai-coding-tool-in-2026)

Reading time: 12 min
Parallel avatar

- [Claude Cowork vs Claude Code: which agentic tool to use and when](https://parallel.ai/articles/claude-cowork-vs-claude-code-which-agentic-tool-to-use-and-when)

Reading time: 11 min

- [The best free web search APIs for AI agents in 2026](https://parallel.ai/articles/best-free-web-search-api)

Tags:Comparison
Reading time: 13 min
![Company Logo](https://parallel.ai/parallel-logo-540.png)

Contact

  • hello@parallel.ai[hello@parallel.ai](mailto:hello@parallel.ai)

For Content Owners

  • index.parallel.ai[index.parallel.ai](https://index.parallel.ai)

Products

  • Task API[Task API](https://parallel.ai/products/task)
  • Responses API[Responses API](https://parallel.ai/products/responses)
  • Monitor API[Monitor API](https://parallel.ai/products/monitor)
  • FindAll API[FindAll API](https://parallel.ai/products/findall)
  • Search API[Search API](https://parallel.ai/products/search)
  • Extract API[Extract API](https://parallel.ai/products/extract)
  • Index by Parallel[Index by Parallel](https://index.parallel.ai)

Solutions

  • Sales[Sales](https://parallel.ai/solutions/sales)
  • Finance[Finance](https://parallel.ai/solutions/finance)
  • Legal[Legal](https://parallel.ai/solutions/legal)
  • Coding & Building[Coding & Building](https://parallel.ai/solutions/code)
  • Life Sciences[Life Sciences](https://parallel.ai/solutions/life-sciences)
  • Insurance[Insurance](https://parallel.ai/solutions/insurance)
  • Productivity[Productivity](https://parallel.ai/solutions/productivity)

Developers

  • Docs[Docs](https://docs.parallel.ai/getting-started/overview)
  • Onboard your Agent[Onboard your Agent](https://docs.parallel.ai/getting-started/overview#onboard-your-agent)
  • Parallel MCP[Parallel MCP](https://docs.parallel.ai/integrations/mcp/quickstart)
  • Parallel CLI[Parallel CLI](https://docs.parallel.ai/integrations/cli)
  • API Reference[API Reference](https://docs.parallel.ai/api-reference)
  • Python SDK[Python SDK](https://pypi.org/project/parallel-web/)
  • Typescript SDK[Typescript SDK](https://www.npmjs.com/package/parallel-web)
  • Integrations[Integrations](https://docs.parallel.ai/integrations/agentic-payments)
  • Changelog[Changelog](https://docs.parallel.ai/resources/changelog)
  • Status[Status](https://status.parallel.ai/)
  • Support[Support](mailto:support@parallel.ai)

Company

  • About[About](https://parallel.ai/about)
  • Press[Press](https://parallel.ai/press)
  • Careers[Careers](https://parallel.ai/careers)
  • Pioneers[Pioneers](https://pioneers.parallel.ai/)
  • Museum of the Human Web[Museum of the Human Web](https://museum.parallel.ai/)

Resources

  • Blog[Blog](https://parallel.ai/blog)
  • Benchmarks[Benchmarks](https://parallel.ai/benchmarks)
  • Become a Content Partner[Become a Content Partner](https://index.parallel.ai/join)
  • Pricing[Pricing](https://parallel.ai/pricing)

Legal

  • Terms of Service[Terms of Service](https://parallel.ai/terms-of-service)
  • Customer Terms[Customer Terms](https://parallel.ai/customer-terms)
  • Privacy[Privacy](https://parallel.ai/privacy-policy)
  • Acceptable Use[Acceptable Use](https://parallel.ai/acceptable-use-policy)
  • Bots[Bots](https://parallel.ai/parallel-web-systems-bots)
  • Trust Center[Trust Center](https://trust.parallel.ai/)
  • Report Security Issue[Report Security Issue](mailto:security@parallel.ai)
LinkedIn[LinkedIn](https://www.linkedin.com/company/parallel-web/about/)Twitter[Twitter](https://x.com/p0)GitHub[GitHub](https://github.com/parallel-web)YouTube[YouTube](https://www.youtube.com/@parallelwebsystems)Events[Events](https://luma.com/parallelwebsystems)
All Systems Operational
![SOC 2 Compliant](https://parallel.ai/soc2.svg)

Parallel Web Systems Inc. 2026