GET
/
v0
/
events
curl --request GET \
  --url https://api.exa.ai/websets/v0/events \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "object": "event",
      "type": "webset.created",
      "data": {
        "id": "<string>",
        "object": "<string>",
        "status": "idle",
        "externalId": "<string>",
        "searches": [
          {
            "id": "<string>",
            "object": "<string>",
            "status": "created",
            "query": "<string>",
            "entity": {
              "type": "<string>"
            },
            "criteria": [
              {
                "description": "<string>",
                "successRate": 50
              }
            ],
            "count": 2,
            "progress": {
              "found": 123,
              "completion": 50
            },
            "metadata": {},
            "canceledAt": "2023-11-07T05:31:56Z",
            "canceledReason": "webset_deleted",
            "createdAt": "2023-11-07T05:31:56Z",
            "updatedAt": "2023-11-07T05:31:56Z"
          }
        ],
        "enrichments": [
          {
            "id": "<string>",
            "object": "<string>",
            "status": "pending",
            "websetId": "<string>",
            "title": "<string>",
            "description": "<string>",
            "format": "text",
            "options": [
              {
                "label": "<string>"
              }
            ],
            "instructions": "<string>",
            "metadata": {},
            "createdAt": "2023-11-07T05:31:56Z",
            "updatedAt": "2023-11-07T05:31:56Z"
          }
        ],
        "metadata": {},
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z"
      },
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "hasMore": true,
  "nextCursor": "<string>"
}

Authorizations

x-api-key
string
header
required

Your Exa API key

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
types
enum<string>[]

The types of events to filter by

Available options:
webset.created,
webset.deleted,
webset.paused,
webset.idle,
webset.search.created,
webset.search.canceled,
webset.search.completed,
webset.search.updated,
webset.export.created,
webset.export.completed,
webset.item.created,
webset.item.enriched

Response

200 - application/json
List of events
data
object[]
required

The list of events

hasMore
boolean
required

Whether there are more results to paginate through

nextCursor
string | null
required

The cursor to paginate through the next set of results