Skip to main content
GET
/
api
/
board
/
{boardId}
/
{cardId}
/
comments
List comments on a card
curl --request GET \
  --url https://core-api.getaptly.com/api/board/{boardId}/{cardId}/comments \
  --header 'x-token: <api-key>'
{
  "data": [
    {
      "id": "lk3jf8",
      "userId": "user_abc",
      "content": "Application approved.",
      "createdAt": "2026-01-15T10:30:00Z"
    }
  ]
}

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

Path Parameters

boardId
string
required
cardId
string
required

Response

Array of comments.

data
object[]