> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rocketblue.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get brand context

> Return targeting, prompt quota, schedule, and estimated next fetch for a brand.

Call this before creating prompts or interpreting limits for a brand.

### Path parameters

<ParamField path="brandId" type="string" required>
  Brand UUID. Obtain from [List brands](/api-reference/brands/list).
</ParamField>

### Request

```bash theme={null}
curl -s \
  -H "x-api-key: YOUR_API_KEY" \
  "https://app.rocketblue.ai/api/v1/brands/BRAND_ID/context"
```

### Response

<ResponseField name="brand" type="object">
  Brand identity and targeting fields.

  <Expandable title="Brand" />
</ResponseField>

<ResponseField name="organizationPlan" type="string | null">
  Organization plan.
</ResponseField>

<ResponseField name="enabledFeatures" type="object">
  Merged organization + brand feature flags.
</ResponseField>

<ResponseField name="promptQuota" type="object | null">
  Remaining prompt slots and limits for the brand (and optional org-wide limit).
</ResponseField>

<ResponseField name="topicCount" type="integer | null">
  Number of topics on the brand.
</ResponseField>

<ResponseField name="promptCount" type="integer | null">
  Number of regular prompts on the brand.
</ResponseField>

<ResponseField name="reportSchedule" type="object | null">
  Frequency, last run, and enabled LLMs.
</ResponseField>

<ResponseField name="lastAnalysisActivityAt" type="string | null">
  ISO timestamp of the latest analysis activity.
</ResponseField>

<ResponseField name="nextEstimatedScheduledFetchAt" type="string | null">
  Estimated next scheduled fetch time. Actual cron timing may differ slightly.
</ResponseField>

```json theme={null}
{
  "brand": {
    "id": "brand-uuid-123",
    "name": "my-brand",
    "displayName": "My Brand",
    "targetMarket": "US SMB",
    "language": "en",
    "organizationId": "org-uuid-123"
  },
  "organizationPlan": "growth",
  "promptQuota": {
    "remainingSlots": 42,
    "promptLimit": 100,
    "brandTotalPrompts": 58
  },
  "topicCount": 8,
  "promptCount": 50,
  "nextEstimatedScheduledFetchAt": "2026-08-04T00:00:00.000Z"
}
```
