Search
Search is the product area for fast, single-call web search. You send a query and get back a ranked list of results immediately — no session to create, no polling, no synthesis step. It’s the lightweight counterpart to AI Research.What Search is for
Use Search when you need:- ranked web results for a query, not an analyzed answer
- the fastest possible turnaround for a single lookup
- a building block for your own research or ranking logic
- a cheap way to check what’s publicly indexed about a topic
- pull search results to display alongside other data
- feed raw results into your own downstream processing
- quick fact-checking or discovery before a deeper lookup
- populate a “related links” or “sources” panel
How it works
Search is synchronous: you call the endpoint and get the result in the same response.- You send a
queryand optionalsettings - NeuralVerge runs the search
- You get ranked results back immediately
session_id and nothing to poll.
Inputs
The Search endpoint accepts:query— the search query, in plain textsettings.country— bias results toward a countrysettings.language— bias results toward a languagesettings.max_results— cap the number of results returned
Outputs
Search results include:- a ranked list of results, each with
title,url, andsnippet - a
session_idfor record-keeping, even though there is nothing to poll - usage metadata
When to choose Search
Choose Search when:- you already know what to look for and just need the results
- you don’t need cross-source synthesis or a written summary
- latency and cost matter more than depth
Related API endpoints
In the API Reference, Search includes the endpoint for running a search.Typical product pattern
A common integration pattern is:- call Search directly from your backend or edge function
- render
title/url/snippetfor each result - optionally feed the results into your own ranking or extraction step