Skip to main content
GET
/
v2
/
context
/
{domain}
Get brand context by domain
curl --request GET \
  --url https://api.brandfetch.io/v2/context/{domain} \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "domain": "brandfetch.com",
    "canonical_name": "Brandfetch",
    "resolved_at": "2026-05-25T08:48:36.843440+00:00"
  },
  "identity": {
    "tagline": "<string>",
    "mission": "<string>",
    "description": "<string>",
    "tags": [
      "<string>"
    ]
  },
  "positioning": {
    "value_proposition": "<string>",
    "target_audience": [
      {
        "segment": "<string>",
        "description": "<string>"
      }
    ],
    "products_and_services": [
      {
        "name": "<string>",
        "type": "product",
        "description": "<string>"
      }
    ]
  },
  "brand": {
    "voice": {
      "summary": "<string>",
      "attributes": [
        "<string>"
      ],
      "avoid": [
        "<string>"
      ]
    },
    "style": {
      "summary": "<string>",
      "attributes": [
        "<string>"
      ]
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.brandfetch.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

domain
string
required

Domain name (e.g., brandfetch.com)

Response

Successful request.

Full brand context returned by the Brand Context API. Note: unlike other endpoints in this API which use camelCase, the Brand Context endpoint intentionally returns field names in snake_case (e.g., canonical_name, resolved_at, value_proposition, target_audience, products_and_services) to align with conventions commonly used by LLM tooling that consumes this data.

meta
object

Metadata about the resolved brand context.

identity
object

Core identity of the brand.

positioning
object

How the brand positions itself in the market.

brand
object

The brand's voice and visual style.