GET
/
v1
/
typebots
/
{typebotId}
/
results
curl --request GET \
  --url https://app.typebot.io/api/v1/typebots/{typebotId}/results \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "<string>",
      "createdAt": "<string>",
      "typebotId": "<string>",
      "variables": [
        {
          "id": "<string>",
          "name": "<string>",
          "isSessionVariable": true,
          "value": "<string>"
        }
      ],
      "isCompleted": true,
      "hasStarted": true,
      "isArchived": true,
      "answers": [
        {
          "createdAt": "<string>",
          "resultId": "<string>",
          "blockId": "<string>",
          "groupId": "<string>",
          "variableId": "<string>",
          "content": "<string>",
          "storageUsed": 123
        }
      ]
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
headerrequired

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

Path Parameters

typebotId
string
required

Query Parameters

limit
number
default: 50
cursor
string
timeFilter
enum<string>
default: last7Days
Available options:
today,
last7Days,
last30Days,
monthToDate,
lastMonth,
yearToDate,
allTime
timeZone
string

Response

200 - application/json
results
object[]
required
nextCursor
string | null