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

# Get Current Organization

> Get the organization of the authenticated user

<Note>This endpoint requires authentication.</Note>

## Response

<ResponseField name="id" type="string">
  Organization UUID
</ResponseField>

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

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

<ResponseField name="onboardingState" type="string">
  Current onboarding state
</ResponseField>

<ResponseField name="preferences" type="object">
  Organization preferences
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.hitler.app/api/organizations/current" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "org-uuid-123",
    "name": "Acme Corporation",
    "slug": "acme-corp",
    "onboardingState": "complete",
    "preferences": {
      "timezone": "America/New_York",
      "checkInTime": "09:00"
    }
  }
  ```
</ResponseExample>
