Results
Get a result
Results
Get a result
GET
/
v1
/
typebots
/
{typebotId}
/
results
/
{resultId}
curl --request GET \
--url https://app.typebot.io/api/v1/typebots/{typebotId}/results/{resultId} \
--header 'Authorization: Bearer <token>'
{
"result": {
"id": "<string>",
"createdAt": "<string>",
"typebotId": "<string>",
"variables": [
{
"id": "<string>",
"name": "<string>",
"value": "<string>"
}
],
"isCompleted": true,
"hasStarted": true,
"isArchived": true,
"answers": [
{
"createdAt": "<string>",
"resultId": "<string>",
"blockId": "<string>",
"groupId": "<string>",
"variableId": "<string>",
"content": "<string>",
"storageUsed": 123
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The resultId
is returned by the /startChat endpoint or you can find it by listing results with /results
endpoint
Response
200
application/json
Successful response
curl --request GET \
--url https://app.typebot.io/api/v1/typebots/{typebotId}/results/{resultId} \
--header 'Authorization: Bearer <token>'
{
"result": {
"id": "<string>",
"createdAt": "<string>",
"typebotId": "<string>",
"variables": [
{
"id": "<string>",
"name": "<string>",
"value": "<string>"
}
],
"isCompleted": true,
"hasStarted": true,
"isArchived": true,
"answers": [
{
"createdAt": "<string>",
"resultId": "<string>",
"blockId": "<string>",
"groupId": "<string>",
"variableId": "<string>",
"content": "<string>",
"storageUsed": 123
}
]
}
}