RankrRankr/Documentation
Menu
Brands

List brands

Returns every brand in the workspace the API key belongs to. Responses are JSON and require a workspace API key.

GET/v1/brands
Requires API key

Parameters

limitinteger· queryoptional

Max items to return. Default 50, max 200.

Request
curl -X GET 'https://api.rankr.so/v1/brands' \
  -H 'Authorization: Bearer YOUR_API_KEY'
Response200
JSON
{
  "data": [
    {
      "id": "9a7e1d92-7c5a-4a2c-8d3b-e5a1f3c7b9a0",
      "name": "Acme",
      "website": "https://acme.com",
      "description": "Enterprise widget platform.",
      "industry": "SaaS",
      "favicon_url": "https://www.google.com/s2/favicons?domain=acme.com&sz=64",
      "created_at": "2026-03-01T12:04:22Z"
    }
  ]
}