List a brand's tags

GET
/brands/{brandId}/tags

Every tag in use on the brand's prompts, with how many carry each — enough to build the same filter the dashboard shows without paging the whole prompt list to derive it.

Tags are not a resource of their own: a tag exists exactly as long as some prompt carries it. branded and unbranded are computed by Elmo and always listed.

Authorization

BearerAuth
AuthorizationBearer <token>

An instance admin key from ADMIN_API_KEYS, or an organization key (elmo_…) issued from the dashboard.

In: header

Path Parameters

brandId*string

Brand identifier.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/brands/string/tags"
{  "brandId": "string",  "data": [    {      "name": "string",      "promptCount": 0,      "system": true    }  ]}