Skip to content

Get a specific label

Request

Retrieves detailed information about a specific label by its UUID

Path
idstringrequired

Label UUID

GET
/rest/v2/labels/{id}
curl -i -X GET \
  'https://api.rhythms.ai/rest/v2/labels/{id}'

Responses

Success

Headers
any
Body*/*
uuidstringrequired

Uuid

namestringrequired

Name

is_groupbooleanrequired

Is group

Default:false
parent_uuidstring

Parent uuid

Default:null
labelings_countnumberrequired

Labelings count

Default:0
descriptionstring

Description

Default:null
creator_uuidstring

Creator uuid

Default:null
colorstring

Color

Default:null
Response
{
  "uuid": "string",
  "name": "string",
  "is_group": false,
  "parent_uuid": null,
  "labelings_count": 0,
  "description": null,
  "creator_uuid": null,
  "color": null
}