Temso

List Brands

Returns the accepted brands tracked in a project — your own brand first, then competitors sorted by name. Use the returned brand IDs to filter analytics and mention endpoints.

GET
/projects/{projectId}/brands

Returns the accepted brands tracked in a project — your own brand first, then competitors sorted by name. Use the returned brand IDs to filter analytics and mention endpoints.

Path Parameters

projectId*string

Project ID (see List Projects)

Query Parameters

page?integer

Page number (1-indexed, default: 1)

Range1 <= value
Default1
limit?integer

Items per page (default: 50, max: 1000)

Range1 <= value <= 1000
Default50

Response Body

application/json

curl -X GET "https://example.com/projects/string/brands"
{  "data": [    {      "brandId": "string",      "brandName": "string",      "isOwnBrand": true,      "website": "string"    }  ],  "pagination": {    "page": 0,    "limit": 0,    "total": 0  }}