GET
/
v0
/
streams
/
{stream}
/
runs
curl --request GET \
  --url https://api.exa.ai/websets/v0/streams/{stream}/runs \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "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"
    }
  ],
  "hasMore": true,
  "nextCursor": "<string>"
}

Authorizations

x-api-key
string
header
required

Your Exa API key

Path Parameters

stream
string
required

The id of the Stream to list runs for

Response

200 - application/json

List of stream runs

The response is of type object.