Skip to main content
GET
/
api
/
v1
/
workspaces
/
{id}
/
labels
List labels
curl --request GET \
  --url https://api.getarca.app/api/v1/workspaces/{id}/labels \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 1,
    "workspace_id": 3,
    "name": "Bug",
    "color": "red",
    "created_at": "2026-01-15T08:00:00.000Z"
  },
  {
    "id": 2,
    "workspace_id": 3,
    "name": "Feature",
    "color": "blue",
    "created_at": "2026-01-15T08:00:00.000Z"
  }
]
Requires the workspaces:read scope. You must be a member of the workspace.

Path parameters

id
string
required
The numeric workspace ID.

Response

Returns an array of label objects ordered by name ascending.
id
number
required
Label identifier.
workspace_id
number
required
Workspace this label belongs to.
name
string
required
Label name.
color
string | null
Color associated with the label.
created_at
string
required
UTC ISO-8601 creation timestamp.
[
  {
    "id": 1,
    "workspace_id": 3,
    "name": "Bug",
    "color": "red",
    "created_at": "2026-01-15T08:00:00.000Z"
  },
  {
    "id": 2,
    "workspace_id": 3,
    "name": "Feature",
    "color": "blue",
    "created_at": "2026-01-15T08:00:00.000Z"
  }
]