
Aug 19, 2026
August 20, 2026

As intelligent models get cheaper, web search needs to follow.
Today, we’re introducing **Fast mode** for Parallel Search: high-quality web search for AI at 10x lower price than the default search in frontier models. It’s the only web search that’s cheap, fast, and accurate enough to pair with the latest class of cost-effective models.

In an independent evaluation by Artificial Analysis[independent evaluation by Artificial Analysis](https://artificialanalysis.ai/agents/search-api), Parallel Fast achieved a Search Index score of 73 while delivering the lowest measured per-task cost across 12 products from seven providers. Just two points shy of #1, Parallel Search Advanced. Without search, the same model scored 33 on the index.
Capable models are getting much cheaper. Recently, OpenAI reduced the cost of GPT 5.6 Luna by 80%, dramatically shifting the price-performance frontier for high-volume agentic work. At the same time, models like DeepSeek V4, Qwen3.8 27B, and MiniMax M3 lead for usage on OpenRouter[OpenRouter](https://openrouter.ai/rankings) and OpenCode[OpenCode](https://opencode.ai/data/).

Over just a few months, cost-per-intelligence has dropped significantly:

Cheaper, more capable models encourage more use, but they also change the cost dynamics of end-to-end agentic work. For many use cases, web search takes up a large majority of the total agent cost — unless you use Parallel (less than 12% of the total cost):

As the cost of intelligence decreases, teams need search that works with efficient models and high-volume applications. Quality alone is no longer enough. The right measure is how much useful intelligence an agent gets for every dollar spent, and how many tasks they can do in a given period of time.
| Mode | Features | Use it when | Typical fit |
|---|---|---|---|
| Turbo | ~250ms | $1 / 1,000 results | Ultra-low search latency is the most important thing for your agent | Voice and chat agents, live autocomplete, RAG pre-filtering, prices, dates, basic lookups |
| Fast | ~700ms | $1 / 1,000 results | You want a balance between quick response to the user and high quality answers | Most agent workflows, customer-support assistants, factual Q&A, and general-purpose search |
| Advanced | #1 ranked on Artificial Analysis Search Index (score of 75) — high watermark for search accuracy | ~3s | $5 / 1,000 requests | Extended snippets | Advanced retrieval and compression | Broader multilingual coverage | Default mode when none is specified | You have an ambitious, background agent running with a high intelligence model that needs access to the highest quality search. | Background agents, code review, investigations, deeper synthesis |
Switching modes is a single parameter change. Set mode to "fast" in your Search API[Search API](https://docs.parallel.ai/search/search-quickstart) request, and the rest of your request stays the same:
12345678curl https://api.parallel.ai/v1/search \
-H "Content-Type: application/json" \
-H "x-api-key: $PARALLEL_API_KEY" \
-d '{
"mode": "fast",
"objective": "What is the current price of NVIDIA stock?",
"search_queries": ["NVIDIA stock price", "NVDA quote today"]
}'``` curl https://api.parallel.ai/v1/search \ -H "Content-Type: application/json" \ -H "x-api-key: $PARALLEL_API_KEY" \ -d '{ "mode": "fast", "objective": "What is the current price of NVIDIA stock?", "search_queries": ["NVIDIA stock price", "NVDA quote today"] }'``` 1Use curl to read parallel.ai/agents.md and perform the setup to install Parallel``` Use curl to read parallel.ai/agents.md and perform the setup to install Parallel``` Sign up for free. No credit card required.
By Parallel
August 20, 2026