GET
https://release0.com/api
/
v1
/
agents
/
{agentId}
/
results
curl --request GET \
  --url https://release0.com/api/v1/agents/{agentId}/results \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "<string>",
      "createdAt": "<string>",
      "agentId": "<string>",
      "workspaceId": "<string>",
      "variables": [
        {
          "id": "<string>",
          "name": "<string>",
          "isSessionVariable": true,
          "value": "<string>"
        }
      ],
      "isCompleted": true,
      "hasStarted": true,
      "isArchived": true,
      "lastChatSessionId": "<string>",
      "updatedAt": "<string>",
      "metadata": {
        "ip": "<string>",
        "location": {
          "continent": "<string>",
          "country": "<string>",
          "region": "<string>",
          "city": "<string>",
          "latitude": "<string>",
          "longitude": "<string>",
          "vercel_region": "<string>"
        },
        "device": {
          "type": "<string>",
          "vendor": "<string>",
          "model": "<string>"
        },
        "browser": {
          "name": "<string>",
          "version": "<string>"
        },
        "os": {
          "name": "<string>",
          "version": "<string>"
        },
        "url": "<string>",
        "bot": true,
        "qr": true,
        "referer": "<string>"
      },
      "answers": [
        {
          "createdAt": "<string>",
          "blockId": "<string>",
          "content": "<string>",
          "attachedFileUrls": [
            "<string>"
          ]
        }
      ]
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
number
default:50
Required range: 1 <= x <= 100
cursor
string
timeFilter
enum<string>
default:last7Days
Available options:
today,
last7Days,
last30Days,
monthToDate,
lastMonth,
yearToDate,
allTime
timeZone
string
start
string
end
string

The end date of creation to retrieve results from.

interval
string

Response

200
application/json

Successful response

The response is of type object.