V1 / Brands

Get a brand

Fetch one brand by ID. Public brands (publicOn set) need no auth; private brands require a dashboard session in the owning space. For API-key access use the MCP server (get_brand).

GET/api/v1/brands/:id

Query / Path parameters

NameInRequiredDescription
idpathYesBrand ID

Responses

200

JSON { doc } — the brand with its token sets

404

Not found or not accessible

Request
curl -X GET "https://bannx.com/api/v1/brands/:id" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
Response
// JSON { doc } — the brand with its token sets
{
  "success": true,
  "data": { ... }
}