Skip to main content
GET
/
v1
/
organization
curl https://api.chowder.dev/v1/organization \
  -H "Authorization: Bearer chd_org_abc123..."
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "Acme Corp",
  "model_providers": ["anthropic", "openai"],
  "subscription_tier": "shrimp",
  "instance_limit": 1,
  "instance_count": 1,
  "created_at": "2026-02-14T12:00:00.000000+00:00",
  "updated_at": "2026-02-14T14:30:00.000000+00:00"
}

Documentation Index

Fetch the complete documentation index at: https://docs.chowder.dev/llms.txt

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

Fetch the current state of your organization, including which model providers are configured, your subscription tier, and how many instances you’re running.
Requires an organization key (chd_org_*). Scoped keys cannot access this endpoint.

Response

Returns 200 OK with the organization object.
id
string
Unique organization ID (UUID).
name
string
Your organization’s name.
model_providers
string[]
Providers that have API keys configured (e.g. ["anthropic", "openai"]). The actual keys are never exposed.
subscription_tier
string
Current plan — "shrimp", "lobster", etc.
instance_limit
integer
Maximum number of active instances your plan allows.
instance_count
integer
How many active (non-terminated) instances you currently have.
created_at
string
ISO 8601 timestamp.
updated_at
string
ISO 8601 timestamp.
curl https://api.chowder.dev/v1/organization \
  -H "Authorization: Bearer chd_org_abc123..."
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "Acme Corp",
  "model_providers": ["anthropic", "openai"],
  "subscription_tier": "shrimp",
  "instance_limit": 1,
  "instance_count": 1,
  "created_at": "2026-02-14T12:00:00.000000+00:00",
  "updated_at": "2026-02-14T14:30:00.000000+00:00"
}