POST
/
research
/
v0
/
tasks
curl --request POST \
  --url https://api.exa.ai/research/v0/tasks \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "instructions": "What species of ant are similar to honeypot ants?",
  "model": "exa-research",
  "output": {
    "schema": {
      "type": "object",
      "properties": {
        "answer": {
          "type": "string"
        }
      }
    }
  }
}'
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}

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

Body

application/json

Response

201 - application/json

Research task created

The response is of type object.