Brands
Get a brand
Full brand profile, including positioning, offerings, and pain points. Responses are JSON and require a workspace API key.
GET
/v1/brands/{brand_id}Requires API key
Parameters
brand_iduuid· pathrequiredID from the list endpoint.
Request
curl -X GET 'https://api.rankr.so/v1/brands/:brand_id' \
-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.",
"detailed_description": "Acme builds widgets for large enterprises …",
"industry": "SaaS",
"positioning": "The fastest widget platform for regulated industries.",
"target_audience": [
"IT ops",
"Security engineers"
],
"offerings": [
{
"name": "Widget API",
"description": "Programmable widgets."
}
],
"pain_points": [
{
"pain": "Slow widgets",
"solution": "Edge caching."
}
],
"favicon_url": "https://www.google.com/s2/favicons?domain=acme.com&sz=64",
"onboarding_completed": true,
"created_at": "2026-03-01T12:04:22Z"
}
}