Skip to main content
GET
/
tags
/
import requests

response = requests.get(
    "https://api.atomscale.ai/tags/",
    headers={"X-API-KEY": "YOUR_API_KEY"}
)
tags = response.json()
[
  {
    "id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
    "name": "high-priority",
    "organization_id": "org_abc123",
    "tag_category_id": "b1a2c3d4-1111-2222-3333-444455556666",
    "category_name": "Review Status",
    "usage_count": 12
  }
]
Returns all tags defined for your organization, including how many data items each tag is applied to.

Response

Returns an array of tag objects.
id
string
Tag UUID
name
string
Tag name
organization_id
string
ID of the organization the tag belongs to
tag_category_id
string
ID of the category this tag belongs to, or null if uncategorized
category_name
string
Name of the tag’s category, or null if uncategorized
usage_count
integer
Number of data items this tag is applied to
import requests

response = requests.get(
    "https://api.atomscale.ai/tags/",
    headers={"X-API-KEY": "YOUR_API_KEY"}
)
tags = response.json()
[
  {
    "id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
    "name": "high-priority",
    "organization_id": "org_abc123",
    "tag_category_id": "b1a2c3d4-1111-2222-3333-444455556666",
    "category_name": "Review Status",
    "usage_count": 12
  }
]