cURL
List tasks
Retrieve a paginated list of your research tasks.
The response follows a cursor-based pagination pattern. Pass the limit parameter to control page size (max 50) and use the cursor token returned in the response to fetch subsequent pages.
GET
cURL
Documentation Index
Fetch the complete documentation index at: https://exa.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
Get your Exa API key
Authorizations
Pass your Exa API key in the x-api-key header. You can also authenticate with Authorization: Bearer .
Query Parameters
The cursor to paginate through the results
Minimum string length:
1Number of results per page (1-50)
Required range:
1 <= x <= 50Response
200 - application/json
List of research requests
data
(Pending · object | Running · object | Completed · object | Canceled · object | Failed · object)[]
required
Research requests ordered by creation time (newest first)
- Pending
- Running
- Completed
- Canceled
- Failed
Example:
{
"researchId": "01jszdfs0052sg4jc552sg4jc5",
"model": "exa-research",
"instructions": "What species of ant are similar to honeypot ants?",
"status": "running"
}If true, use nextCursor to fetch more results
Pass this value as the cursor parameter to fetch the next page

