Dashboard
API
- Overview
- Get started
- How It Works
- Core
- Websets
- Items
- Searches
- Enrichments
- Imports
- Monitors
- Webhooks
- Events
Items
List all Items for a Webset
Returns a list of Webset Items.
You can paginate through the Items using the cursor
parameter.
GET
/
v0
/
websets
/
{webset}
/
items
Copy
Ask AI
curl --request GET \
--url https://api.exa.ai/websets/v0/websets/{webset}/items \
--header 'x-api-key: <api-key>'
Copy
Ask AI
{
"data": [
{
"id": "<string>",
"object": "webset_item",
"source": "search",
"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>",
"satisfied": "yes",
"references": []
}
],
"enrichments": [
{
"object": "enrichment_result",
"format": "text",
"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"
}
],
"hasMore": true,
"nextCursor": "<string>"
}
Authorizations
Your Exa API key
Path Parameters
The id or externalId of the Webset
Query Parameters
The cursor to paginate through the results
Minimum length:
1
The number of results to return
Required range:
1 <= x <= 200
Response
200 - application/json
Webset Items
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.exa.ai/websets/v0/websets/{webset}/items \
--header 'x-api-key: <api-key>'
Copy
Ask AI
{
"data": [
{
"id": "<string>",
"object": "webset_item",
"source": "search",
"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>",
"satisfied": "yes",
"references": []
}
],
"enrichments": [
{
"object": "enrichment_result",
"format": "text",
"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"
}
],
"hasMore": true,
"nextCursor": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.