AI Research
AI Research is the product area for end-to-end research workflows. Instead of calling a narrow lookup endpoint, you provide a task and a settings object. NeuralVerge then runs a multi-step process that can search for information, evaluate sources, synthesize findings, and generate a final response.What AI Research is for
Use AI Research when the task requires:- multiple searches
- reasoning across multiple sources
- a concise analyst-style summary
- structured outputs for downstream systems
- a reusable research pipeline instead of a single lookup
- investigate a company and identify operational risks
- compile a market overview from public sources
- summarize external sentiment and reputation signals
- verify claims about a person or organization
- produce structured intelligence for internal tooling
How it works
A typical research run looks like this:- You send instructions and settings
- NeuralVerge starts a session
- The workflow searches and analyzes relevant sources
- The system synthesizes the result
- You retrieve the result from the session status endpoint
Inputs
The main AI Research endpoint accepts:instructionsfor the task itselfsettingsfor workflow behavior and model configuration
- country or localization behavior
- whether search is enabled
- model selection
- extraction schema usage
Outputs
Research results can include:- a
humansummary for UI display - a
machineobject for structured consumption - total points or usage metadata
- session state and progress
When to choose AI Research
Choose AI Research when:- the task is exploratory
- you need synthesis, not just retrieval
- the answer depends on multiple sources
- you want a richer final report
Related API endpoints
In the API Reference, AI Research includes endpoints for:- starting a research run
- lightweight search execution
- checking session status
Typical product pattern
A common integration pattern is:- start the run from your backend
- persist the
session_id - poll until completion
- render
human - store
machinefor automation or analytics