Skip to main content
GET
/
v0
/
websets
/
{webset}
/
items
cURL
curl --request GET \
  --url https://api.exa.ai/websets/v0/websets/{webset}/items \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "object": "webset_item",
      "sourceId": "<string>",
      "websetId": "<string>",
      "properties": {
        "type": "person",
        "url": "<string>",
        "description": "<string>",
        "person": {
          "name": "<string>",
          "location": "<string>",
          "position": "<string>",
          "company": {
            "name": "<string>",
            "location": "<string>"
          },
          "pictureUrl": "<string>"
        }
      },
      "evaluations": [
        {
          "criterion": "<string>",
          "reasoning": "<string>",
          "references": []
        }
      ],
      "enrichments": [
        {
          "object": "enrichment_result",
          "result": [
            "<string>"
          ],
          "reasoning": "<string>",
          "references": [
            {
              "title": "<string>",
              "snippet": "<string>",
              "url": "<string>"
            }
          ],
          "enrichmentId": "<string>"
        }
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "sourceEntityId": "<string>"
    }
  ],
  "hasMore": true,
  "nextCursor": "<string>"
}

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.

Authorizations

x-api-key
string
header
required

Pass your Exa API key in the x-api-key header. You can also authenticate with Authorization: Bearer .

Path Parameters

webset
string
required

The id or externalId of the Webset

Query Parameters

cursor
string

The cursor to paginate through the results

Minimum string length: 1
limit
number
default:20

The number of results to return

Required range: 1 <= x <= 100
sourceId
string

The id of the source

Response

200 - application/json

Webset Items

data
object[]
required

The list of webset items

hasMore
boolean
required

Whether there are more Items to paginate through

nextCursor
string | null
required

The cursor to paginate through the next set of Items