---
title: "Get the brand bound to this API key"
method: GET
path: "/v1/brand"
tags: ["Brand"]
---

# Get the brand bound to this API key

`GET /v1/brand`

Returns `{ brand }` — the single brand bound to the API key. Check `ready` (`status === "completed"`) before calling `POST /v1/emails`, which returns `422 BRAND_NOT_READY` until brand extraction finishes.

Embed the design context in the same call with `?include=identity,emailDesign,imageStyle,logos` (comma-separated). `identity` is the structured brand facts; `emailDesign` / `imageStyle` are the markdown design system the email agent follows; `logos` is the CDN logo set. The paginated image library is a separate read (`GET /v1/brand/images`).

## Query parameters

- `include` string

## Response `200`

The brand bound to this API key, plus any sub-resources named in `?include=`.

- BrandGetResponse
  - `brand` object, required
    - `brandId` string, required
    - `domain` string, required
    - `status` 'extracting' | 'completed' | 'failed' | 'deleting', required
    - `ready` boolean, required
    - `createdAt` string, date-time
    - `updatedAt` string, date-time
  - `identity` object
    - `brandName` string
    - `description` string
    - `tagline` string
    - `contactEmail` string
    - `contactPhone` string
    - `address` string
    - `socialLinks` unknown[]
      - unknown
    - `contentLinks` unknown[]
      - unknown
  - `emailDesign` string
  - `imageStyle` string
  - `logos` object[]
    - `src` string, required
    - `type` string
    - `theme` string
    - `format` string
    - `background` string
    - `width` number
    - `height` number
    - `size` number

## Other responses

- `400` — The request body or query string was invalid (unknown key, wrong type, or missing required field). Strict schemas reject unknown keys — including `brandId`, which is always resolved from the API key.
- `401` — The API key was missing, invalid, or revoked.
- `404` — The brand bound to this API key was not found.
- `429` — The request hit the rolling rate limit window.

---

[API](https://skmtc.net/brew/apis/brew-public-api-v1.md) · [All operations](https://skmtc.net/brew/apis/brew-public-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/brew/brew-public-api-v1/versions/db96cfedc6c5/schema)
