GET
/
v0
/
webhooks
curl --request GET \
  --url https://api.exa.ai/websets/v0/webhooks \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "object": "webhook",
      "status": "active",
      "events": [
        "webset.created"
      ],
      "url": "<string>",
      "secret": "<string>",
      "metadata": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "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

Response

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

The list of webhooks

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