Skip to content

Get a Result

Endpoint used to get a specific result from a Toolzz Bot.

Terminal window
curl --request GET \
--url 'https://bots.toolzz.ai/api/v1/toolzz/{typebotId}/results/{resultId}' \
--header 'Authorization: Bearer <token>'
{
"result": {}
}
ParameterTypeDescriptionRequired
AuthorizationStringAccess token (must contain “Bearer” before the token)Yes
ParameterTypeDescriptionRequired
typebotIdstringThe unique identifier of the Toolzz Bot to get a result from.Yes
resultIdstringThe unique identifier of the result. Returned by the Start Chat endpoint or found via the List Results endpoint.Yes

KeyTypeDescription
resultobjectThe Toolzz Bot result information.

To access this endpoint, it is necessary to send a valid access token through the authorization header (Authorization) of the request.