> ## 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 organization context

> Return organization-level plan and brand count for the authenticated API key.

Use this once per session to understand the organization scope tied to your API key.

### Request

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

### Response

<ResponseField name="organizationId" type="string">
  Organization UUID linked to the API key.
</ResponseField>

<ResponseField name="name" type="string">
  Organization name.
</ResponseField>

<ResponseField name="plan" type="string | null">
  Current plan identifier.
</ResponseField>

<ResponseField name="agency" type="boolean | null">
  Whether this organization is an agency account.
</ResponseField>

<ResponseField name="enabledFeatures" type="object">
  Feature flags and limits for the organization.
</ResponseField>

<ResponseField name="brandCount" type="integer">
  Number of brands in the organization.
</ResponseField>

```json theme={null}
{
  "organizationId": "org-uuid-123",
  "name": "Acme Inc",
  "plan": "growth",
  "agency": false,
  "enabledFeatures": {},
  "brandCount": 3
}
```
