Skip to content

List Toolzz Bots

Endpoint used to list all Toolzz Bots in a workspace.

Terminal window
curl --request GET \
--url 'https://bots.toolzz.ai/api/v1/toolzz?workspaceId={workspaceId}' \
--header 'Authorization: Bearer <token>'
{
"typebots": [
{
"id": "<string>",
"name": "<string>",
"icon": "<string>",
"publishedTypebotId": "<string>"
}
]
}
ParameterTypeDescriptionRequired
AuthorizationStringAccess token (must contain “Bearer” before the token)Yes
ParameterTypeDescriptionRequired
workspaceIdstringThe workspace ID to get bots from.Yes

KeyTypeDescription
typebotsobject[]Toolzz Bots information.
typebots[].idstringUnique identifier for the bot.
typebots[].namestringThe Toolzz Bot name.
typebots[].iconstringThe visual representation associated with the bot.
typebots[].publishedTypebotIdstringUnique identifier for the published version of the bot.

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