GET
/
research
/
v0
/
tasks
curl --request GET \
  --url https://api.exa.ai/research/v0/tasks \
  --header 'x-api-key: <api-key>'
{
  "requestId": "b5947044c4b78efa9552a7c89b306d95",
  "data": [
    {
      "id": "<string>",
      "status": "running",
      "instructions": "<string>",
      "schema": {},
      "data": {},
      "citations": {}
    }
  ],
  "hasMore": true,
  "nextCursor": "<string>"
}

Get your Exa API key

Authorizations

x-api-key
string
header
required

API key can be provided either via x-api-key header or Authorization header with Bearer scheme

Query Parameters

cursor
string

The cursor to paginate through the results

Minimum length: 1
limit
number
default:25

The number of results to return

Required range: 1 <= x <= 200

Response

200 - application/json

List of research tasks

The response is of type object.