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

# Get Organization

> Returns the authenticated organization.

Returns the organization associated with the authenticated API key or session.

## Response

<ResponseField name="id" type="string" required>
  Organization ID.
</ResponseField>

<ResponseField name="name" type="string" required>
  Display name.
</ResponseField>

<ResponseField name="slug" type="string" required>
  URL-safe identifier. Unique across all organizations.
</ResponseField>

<ResponseField name="plan" type="&#x22;free&#x22; | &#x22;pro&#x22; | &#x22;enterprise&#x22;" required>
  Current billing plan.
</ResponseField>

<ResponseField name="billingCycleStart" type="string" required>
  ISO 8601 timestamp. The monthly evaluation count resets on this date each month.
</ResponseField>

<ResponseField name="monthlyEvalCount" type="number" required>
  Evaluations counted in the current billing cycle. Updated nightly by a cron job — not real-time.
</ResponseField>

<ResponseField name="createdAt" type="string" required>
  ISO 8601 creation timestamp.
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl https://nest.feather.mupeni.dev/v1/orgs/me \
    -H "Authorization: Bearer <server_key>"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "org_01hx...",
    "name": "Acme Corp",
    "slug": "acme-corp",
    "plan": "pro",
    "billingCycleStart": "2024-01-01T00:00:00.000Z",
    "monthlyEvalCount": 312450,
    "createdAt": "2024-01-01T00:00:00.000Z"
  }
  ```
</ResponseExample>
