List all labels
Returns a list of your labels associated with the given board. The labels are returned sorted by creation date, with the most recently created labels appearing first.
Parameters
title
string
The title to search for.
Returns
Return a response that contains an array of all the labels.
get
/api/boards/{id}/labels
curl https://{workspace}.kitchen.co/api/boards/{id}/labels \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-Requested-With: XMLHttpRequest' \
-H 'Authorization: Bearer {API_KEY}'
Response
[
{
"id": "lbl_5b521cf4562a5ba739fc72a8",
"color": "#f9d0d9",
"title": null,
"createdAt": "2025-06-16T11:25:31+00:00",
"updatedAt": "2025-06-16T11:25:31+00:00"
}
]