> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getpoppy.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get boards

> Retrieve all your boards

This endpoint returns a list of all boards that you can access with your API key.

## Query Parameters

<ParamField query="api_key" type="string">
  Your API key for authentication
</ParamField>

## Response

<ResponseField name="data" type="array">
  List of your available boards
</ResponseField>

<ResponseField name="data[].id" type="string">
  Unique identifier for each board
</ResponseField>

<ResponseField name="data[].name" type="string">
  Display name of the board
</ResponseField>

<ResponseExample>
  ```json 200 OK theme={null}
  {
      "data": [
          {
              "name": "Bronze Jackal",
              "id": "quiet-dream-jtMud"
          },
          {
              "name": "Olive Mastodon",
              "id": "tender-waterfall-dDa2B"
          },
          {
              "name": "Magenta Smelt",
              "id": "winter-frost-CJk4G"
          }
      ]
  }
  ```
</ResponseExample>

<ResponseExample>
  ```json 401 Unauthorized theme={null}
  {
    "error": "Unauthorized"
  }
  ```
</ResponseExample>
