Skip to main content
GET
/
aptlet
/
{boardId}
Get cards for a board
curl --request GET \
  --url https://app.getaptly.com/api/aptlet/{boardId} \
  --header 'x-token: <x-token>'
[
  {
    "_id": "JShpBxEFgRmZnivTf",
    "name": "Widget Adapter",
    "stage": "To Do"
  }
]

Headers

x-token
string
required

Your Aptly API Token. Available in the Aptly UI under Card Sources > API.

Path Parameters

boardId
string
required

The unique ID of the board.

Query Parameters

page
integer
default:0

The page of results to return, 0-indexed. Page size is 200 items.

Response

A list of cards

_id
string
Example:

"JShpBxEFgRmZnivTf"

name
string
Example:

"Widget Adapter"

stage
string
Example:

"To Do"