Skip to content
Home

List chatbots

Get a list of all the available chatbots associated with your account. Can be used to retrieve IDs for further operations.

GET/chatbots

Headers

Authorizationstringrequired

Your API Key formatted as Bearer sk_live_…

dataarray

A list of chatbot objects.

idstring

The unique UUID identifier of the chatbot.

namestring

The name of the chatbot.

settingsobject

Configuration object containing theme and prompt details.

is_activeboolean

Whether the chatbot is currently enabled and active.

created_atstring

The ISO 8601 timestamp of when the chatbot was created.

Terminal window
curl -X GET https://app.picobot.dev/api/chatbots \
-H "Authorization: Bearer <token>"
{
"data": [
{
"id": "91981020-f783-4544-ad96-39857ac589cb",
"name": "Support Bot",
"settings": {
"theme": "dark"
},
"is_active": true,
"created_at": "2026-06-19T21:21:06.572Z"
},
{
"id": "b3f0-848d33130015-1e70-4201",
"name": "Lead Generator",
"settings": {
"theme": "light"
},
"is_active": true,
"created_at": "2026-06-15T10:00:00.000Z"
}
]
}