Skip to main content
GET
/
api
/
boards
List boards
curl --request GET \
  --url https://core-api.getaptly.com/api/boards \
  --header 'x-token: <api-key>'
{
  "data": [
    {
      "uuid": "abc-123-board",
      "name": "Leases",
      "endpoints": [
        {
          "method": "GET",
          "url": "https://core-api.getaptly.com/api/board/abc-123-board",
          "description": "List cards (query: page, pageSize, updatedAtMin, includeArchived)"
        },
        {
          "method": "POST",
          "url": "https://core-api.getaptly.com/api/board/abc-123-board",
          "description": "Create or update a card"
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.getaptly.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-token
string
header
required

Response

List of API-enabled boards.

data
object[]