Streams
Get Stream
Gets a specific stream.
GET
/
v0
/
streams
/
{stream}
curl --request GET \
--url https://api.exa.ai/websets/v0/streams/{stream} \
--header 'x-api-key: <api-key>'
{
"id": "<string>",
"object": "stream",
"status": "open",
"websetId": "<string>",
"cadence": {
"cron": "<string>",
"timezone": "Etc/UTC"
},
"behavior": {
"type": "search",
"config": {
"query": "<string>",
"criteria": [
{
"description": "<string>"
}
],
"entity": {
"type": "company"
},
"count": 123,
"behavior": "append"
}
},
"lastRun": {
"id": "<string>",
"object": "stream_run",
"status": "created",
"streamId": "<string>",
"type": "search",
"completedAt": "2023-11-07T05:31:56Z",
"failedAt": "2023-11-07T05:31:56Z",
"canceledAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"nextRunAt": "2023-11-07T05:31:56Z",
"metadata": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
Authorizations
Your Exa API key
Path Parameters
The id of the Stream
Response
200 - application/json
Stream details
The response is of type object
.
curl --request GET \
--url https://api.exa.ai/websets/v0/streams/{stream} \
--header 'x-api-key: <api-key>'
{
"id": "<string>",
"object": "stream",
"status": "open",
"websetId": "<string>",
"cadence": {
"cron": "<string>",
"timezone": "Etc/UTC"
},
"behavior": {
"type": "search",
"config": {
"query": "<string>",
"criteria": [
{
"description": "<string>"
}
],
"entity": {
"type": "company"
},
"count": 123,
"behavior": "append"
}
},
"lastRun": {
"id": "<string>",
"object": "stream_run",
"status": "created",
"streamId": "<string>",
"type": "search",
"completedAt": "2023-11-07T05:31:56Z",
"failedAt": "2023-11-07T05:31:56Z",
"canceledAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"nextRunAt": "2023-11-07T05:31:56Z",
"metadata": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
Assistant
Responses are generated using AI and may contain mistakes.