Skip to main content

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 with background=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:
1

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.
2

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.
3

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.
Wide-research quality tracks how precisely you specify the task. Give it a concrete target (“at least 70 companies”), clear qualification rules (dates, geography, thresholds), a required source per record, and an explicit output shape — name the file and list the exact fields per row. Structured, cited output is easier to verify and consume downstream.

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.