Skip to main content
GET
/
api
/
chats
Get chats
curl --request GET \
  --url https://api.getpoppy.ai/api/chats \
  --header 'x-api-key: <api-key>'
{
    "data": [
        {
            "id": "chatNode-patient-star-4uIJt",
            "conversations": [
                { "id": "xMmCzgatt8TAI1L58LYQ", "name": "Breakdown of fizzy drinks part 1" }
            ]
        },
        {
            "id": "chatNode-icy-feather-45HNI",
            "conversations": [
                { "id": "OdtFIwEmdhlTrNy5UTNg", "name": "Breakdown of fizzy drinks part 2" }
            ]
        }
    ]
}
This endpoint returns all available chat assistants that are connected to a specific board.

Query Parameters

api_key
string
Your API key for authentication
board_id
string
required
The ID of the board whose chat assistants you want to retrieve

Response

data
array
List of chat assistants attached to the board
data[].id
string
Unique identifier for each chat assistant
data[].conversations
array
List of existing conversation threads for this chat assistant
{
    "data": [
        {
            "id": "chatNode-patient-star-4uIJt",
            "conversations": [
                { "id": "xMmCzgatt8TAI1L58LYQ", "name": "Breakdown of fizzy drinks part 1" }
            ]
        },
        {
            "id": "chatNode-icy-feather-45HNI",
            "conversations": [
                { "id": "OdtFIwEmdhlTrNy5UTNg", "name": "Breakdown of fizzy drinks part 2" }
            ]
        }
    ]
}
I