curl --request GET \
--url https://api.example.com/api/v2/projects/{project_id}/tags \
--header 'Authorization: Bearer <token>'{
"tags": [
{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"association_count": 0
}
]
}Retrieve all tags in a project. Optionally filter by entity type (e.g., ‘dataset’).
curl --request GET \
--url https://api.example.com/api/v2/projects/{project_id}/tags \
--header 'Authorization: Bearer <token>'{
"tags": [
{
"id": "<string>",
"name": "<string>",
"color": "<string>",
"association_count": 0
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
TagsListResponse(tags: list[server.api_routes.tags_api_v2.TagResponse])
Show child attributes