Skip to main content
GET
/
api
/
boards
Get boards
curl --request GET \
  --url https://api.getpoppy.ai/api/boards \
  --header 'x-api-key: <api-key>'
{
    "data": [
        {
            "name": "Bronze Jackal",
            "id": "quiet-dream-jtMud"
        },
        {
            "name": "Olive Mastodon",
            "id": "tender-waterfall-dDa2B"
        },
        {
            "name": "Magenta Smelt",
            "id": "winter-frost-CJk4G"
        }
    ]
}
This endpoint returns a list of all boards that you can access with your API key.

Query Parameters

api_key
string
Your API key for authentication

Response

data
array
List of your available boards
data[].id
string
Unique identifier for each board
data[].name
string
Display name of the board
{
    "data": [
        {
            "name": "Bronze Jackal",
            "id": "quiet-dream-jtMud"
        },
        {
            "name": "Olive Mastodon",
            "id": "tender-waterfall-dDa2B"
        },
        {
            "name": "Magenta Smelt",
            "id": "winter-frost-CJk4G"
        }
    ]
}
{
  "error": "Unauthorized"
}
I