Overview
wide-research is the preset for building large, evidence-backed collections. Point it at a task like “find every company that matches X and cite a source for each” and it discovers the qualifying entities and gathers supporting evidence for each one, then writes the results to a file you download.
This is the task shape measured by Perplexity’s WANDR benchmark (Wide ANd Deep Research): discover a broad set of items (wide) and investigate each far enough to back every claim with a source (deep). It’s a class of research the Agent API is built for — Perplexity’s search-orchestration system leads the WANDR benchmark, and wide-research puts that same configuration behind a single preset.
Quickstart
Wide research runs take minutes, so submit them withbackground=true, poll the response by id until it finishes, then download the file the agent produced.
How it works
A wide-research run has three parts, each backed by its own feature page:Submit in the background
Set
preset="wide-research" and background=true, and pass the task as input. The submit call returns immediately with a response id and a queued status; the run continues server-side even if your client disconnects. See Background mode.Poll until it finishes
Retrieve the response by
id until its status is terminal — completed, failed, or cancelled. You can also stream the run live and reconnect after a drop; see Background mode.Download the results
The agent writes the collection to a file in the sandbox and delivers it, so it shows up as a
share_file item in the response output. List and download it by response id. See Working with files.Next Steps
Background mode
Submit, poll, stream, and reconnect long-running runs.
Working with files
List and download the files a run produces.
Presets
See every preset and what it configures.
WANDR Benchmark
Read the research behind wide-and-deep evaluation.