sequenced.ai
Articles/Search & research/Blueprint//9 min read

Brave gives AI applications a choice of search, context or answers

How Brave’s Search API, LLM Context and Answers differ, with current pricing, Goggles source controls and a practical research workflow.

By Sequenced deskAI-assisted, source-led · how we work
Visit Brave website ↗
Independent indexSearch foundationBrave’s own public-web search index
$5 / 1,000Search requestsIncludes LLM Context on the Search plan
GogglesSource controlsCustom ranking and filtering rules
Searches + tokensAnswers billingMultiple searches can contribute to one answer
Bravebrave.com · independent research

Represent this company? Verify your work email to access its workspace, or send the desk a factual correction.

Brave is known for its browser, but its search business also supplies infrastructure for applications that need information from the public web. The Search API offers conventional results and extracted context for AI systems, while Answers generates a response from web evidence. For a developer, the main decision is how much of the research process to own: selecting results, preparing evidence or producing the final answer. Brave offers different entry points for those choices.

In brief
  1. 01Best fit Developers who need public-web search in an assistant, research tool or application they control.
  2. 02Core distinction Search returns results, LLM Context returns extracted evidence and Answers produces the final response.
  3. 03Buying decision Evaluate coverage and source controls on real questions, then budget requests separately from answer-generation usage.

01 / ProductThe products behind the search API

Brave's API overview1 describes a Search plan that includes web, news, image and other search capabilities alongside LLM Context. These services use Brave's independent search index. The separate Answers offering combines search with generation. Consumer search and browser subscriptions are different products, so the relevant budget for an application is its API usage.

Ordinary Web Search returns a structured collection of results. LLM Context returns extracted passages and source information in a form intended for a model. Answers takes the next step and writes a response. A team building its own assistant may want LLM Context because it controls the model, prompt and final presentation; a simpler question-answering interface may benefit from an integrated answer service.

This separation is consequential for debugging. If the required source never appears, the problem is retrieval or query design. If the source appears but the necessary passage is absent, the problem is the evidence supplied to the model. If the passage is present but the answer misinterprets it, the generation step needs attention. Choosing an endpoint should preserve enough visibility to diagnose the failures your application is likely to encounter.

02 / AudienceWho should consider Brave

Brave fits developers adding public-web knowledge to research assistants, internal tools and customer-facing applications. A product team might track changes in vendor documentation; an education application might collect sources for a question; a research assistant might compare several public accounts of an event. The shared requirement is access to external information beyond a model's existing knowledge.

The API is less directly useful for a team whose entire evidence base is a private document collection. Public-web search does not inherit the permissions or source structure of an internal knowledge system. It can complement that system, but the application needs to distinguish internal records from public sources and explain which kind supports an answer.

Compare the Exa blueprint when semantic discovery and finding particular kinds of pages are central. Compare the Tavily blueprint when selecting a research tool for an agent. Brave's combination of a broad index, extracted context and configurable ranking is worth evaluating where a team wants control over both source selection and its own generation layer.

03 / WorkflowA workflow for tracking product changes

The following is a proposed workflow for a software team preparing a weekly digest of changes to products it integrates with. Start with a list of products, their official documentation and the particular capabilities the team depends on. Define what counts as an actionable change: a deprecated endpoint, a new authentication requirement or a changed usage limit, for example.

Find sources with a clear scope

Run searches that combine the product name with a precise change category and a relevant date range. The Web Search reference2 describes country, language and freshness controls. Freshness is based on dates reported by the content, such as publication or modification dates. Check the date of the actual change before placing it in the digest; a recently updated page can describe an older event.

Retain the query and result URLs with each candidate. Deduplicate repeated announcements and distinguish the official release note from commentary about it. A news article can help discover an event, while the original documentation may be needed to determine exactly which product version or account type is affected.

Use Goggles to make source preferences explicit. The Goggles guide5 describes rules that boost, downrank or discard results by domain and URL pattern. A team could prioritise official documentation paths and lower the rank of repetitive aggregators. Keep a broader comparison query so that the source policy does not silently exclude a useful migration discussion or an announcement on a newly launched domain.

Collect evidence before writing the digest

Use LLM Context for the selected research questions. Its documentation3 provides controls for the total context budget, per-URL budget and relevance threshold. These let a developer balance breadth against how much detail each source contributes. A strict threshold may produce a cleaner input but can also leave the model with too little evidence for a complicated comparison.

Build an evidence record for each proposed digest item: product, affected feature, event date, source URL, supporting passage and a short explanation of the team's likely impact. Keep “announcement found” separate from “integration affected.” A vendor can release a new capability without changing the API version your application currently uses.

Ask the model to draft only from those records. Require it to identify missing details instead of completing a migration instruction from general knowledge. Route items involving the team's actual production dependencies to the responsible engineer for review. The digest should explain the change, why it may matter and where to verify the original statement.

If using Answers instead, preserve its citations and usage information as structured data. The Answers guide4 explains that the stream can contain special citation and usage messages. The interface needs to parse those messages rather than display their raw tags as prose. Make sure each visible citation still points to the passage or source that supports its associated claim.

Finally, record which digest items were accepted, corrected or dismissed. That feedback improves the query set and source policy. A useful weekly process reduces irrelevant items while keeping consequential changes visible; the number of returned pages is only an intermediate measure.

04 / PricingPricing and the real unit of an answer

The following prices are in US dollars and were checked on 15 September 2026 against the API plans1 and Answers billing formula4. Search and Answers have different units, so their headline prices should not be compared as if they buy the same operation.

OfferingPublished rateCapacity / terms
Search, including LLM Context$5 per 1,000 requests$5 monthly credit; 50 queries/second
Answers search usage$4 per 1,000 searchesA single answer may run multiple searches
Answers model usage$5 per million input tokens and $5 per million output tokens$5 monthly credit; 2 requests/second
EnterpriseCustom agreementCustom capacity and retention terms

Brave API prices checked 15 September 2026; USD. Answers uses searches plus token usage. Official source1.

For Search, 10,000 requests cost $50 before the available monthly credit is applied. The application's own model bill remains separate when it uses retrieved context with another provider. A larger context budget can therefore increase generation cost even when the search request price is unchanged.

Answers charges for the searches carried out and for input and output tokens. One visible answer can involve several searches, especially in research mode. For an illustrative answer using three searches, 4,000 input tokens and 1,000 output tokens, the published formula gives $0.037 before credits: $0.012 for searches and $0.025 for tokens. This is a calculation from the rates, not an average answer cost.

Store returned usage with the application request so that slow or expensive answers can be inspected. Compare ordinary questions with multi-step research separately. A weekly background digest can tolerate a different response time and budget from an interactive user asking a simple factual question.

The published rate limits also differ: the Search plan lists 50 queries per second and Answers lists 2. Size the queue around the chosen endpoint. An application that switches from retrieving context to generating complete answers should revisit concurrency, timeout handling and the way it reports progress to users.

05 / DistinctionsWhat stands out

The independent index makes Brave a useful candidate for teams that want another retrieval source to evaluate. The practical benefit depends on the questions and languages the application serves. Compare relevant-source coverage and the quality of the returned evidence on a representative set, rather than assuming that one provider's overall benchmark result predicts every specialised workload.

Brave's 2026 API announcement6 presents LLM Context as a way to improve the grounding material supplied to models. That is a useful architectural idea: answer quality can improve when the model receives the right passages in a usable form. It also gives a team a more focused optimisation target than repeatedly changing the prompt while leaving weak evidence unchanged.

Goggles makes ranking policy visible and reusable. For a specialist application, the preferred source mix can be part of the product's design rather than an accidental result of the query wording. The trade-off is that a restrictive policy can narrow the evidence too far. Version the rules and review their effects when the source landscape changes.

The option to use either context or complete answers also supports a gradual integration. A team can begin with a simple answer interface, then take more control over evidence selection where its domain requires it. Conversely, a team with a custom retrieval pipeline can evaluate whether some low-complexity questions are better served by the integrated endpoint.

06 / QuestionsWhat to test before adopting it

Start with query coverage. Include product names that are also ordinary words, non-English queries, recent changes and questions where several versions of a document remain indexed. Record whether the source is missing, the result is irrelevant or the content is insufficient. Those distinctions reveal whether better query design can help or whether another retrieval source is needed.

Then test the evidence-to-answer connection. Pick claims with numbers, dates and qualifications, and compare the answer with the returned passage. A citation placed beside a sentence does not prove that the page supports every part of it. The application should make that inspection possible without requiring the user to reconstruct the full research process.

Finally, test failure behaviour. Handle empty results, rate limits and interrupted streams without presenting an incomplete response as finished. Keep API keys on the server and confirm the applicable retention terms for the information sent in queries. Browser privacy features do not by themselves define the contract for a separate API integration.

07 / DecisionThe decision on Brave

Choose Brave when an application needs public-web retrieval and the team wants a clear choice between search results, model-ready context and a complete generated answer. LLM Context is particularly relevant when the application already owns its model and wants more useful evidence from each search step.

Start with representative questions and a transparent source policy. Measure whether the returned passages support the claims the application must make, then compare cost and response time for the endpoint that fits that task. Use research mode where the question benefits from multiple searches and the interface can accommodate the additional work.

The adoption decision should rest on source quality, integration visibility and the total cost of a useful answer. A search API earns its place when it helps the application explain an answer more accurately and keep that explanation current as the web changes.

01

Add public-web retrieval

Evaluate Web Search and LLM Context with a representative question set and an explicit source record.

Best for applications with their own model
02

Build an integrated answer experience

Use Answers where its citations, latency and usage fit the interface, with correct stream parsing.

Best for a simpler question-answering layer
03

Create a specialised research workflow

Combine source ranking rules, context budgets and reviewed evidence records for recurring research tasks.

Best for domain-specific applications
What should we explore next?

A business worth understanding.

Suggest your business or one you find interesting. Tell us what you want to understand about its product, positioning, design or workflows.

Suggestions are free. Selection and publication stay with the desk.

Sources, each with the date we read it

Numbered citations point here. Copy address adds Sequenced referral tags so the source can recognise where you found it.

  1. 1. API plans and overview
    Accessed 2026-09-15https://brave.com/search/api/
  2. 2. Web Search reference
    Accessed 2026-09-15https://api-dashboard.search.brave.com/api-reference/web/search/get
  3. 3. LLM Context
    Accessed 2026-09-15https://api-dashboard.search.brave.com/documentation/services/llm-context
  4. 4. Answers and billing
    Accessed 2026-09-15https://api-dashboard.search.brave.com/documentation/services/answers
  5. 5. Goggles
    Accessed 2026-09-15https://api-dashboard.search.brave.com/documentation/resources/goggles
  6. 6. 2026 API announcement
    Accessed 2026-09-15https://brave.com/blog/most-powerful-search-api-for-ai/

Continue reading

All in this category