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

# Get Current Account

> Returns details about the account associated with the API key.

### Headers

<ParamField header="Authorization" type="string" required>
  `Bearer YOUR_API_KEY`
</ParamField>

### Response

<ResponseField name="success" type="boolean">
  Always `true` on success.
</ResponseField>

<ResponseField name="authenticated_as" type="object">
  The account associated with the API key.

  <Expandable title="Properties">
    <ResponseField name="id" type="string">Account UUID</ResponseField>
    <ResponseField name="email" type="string">Account email address</ResponseField>
    <ResponseField name="full_name" type="string">Full name</ResponseField>
    <ResponseField name="company_name" type="string">Company name (if set)</ResponseField>
    <ResponseField name="role" type="string">Account role</ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://kliio.app/api/v1/me \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```js JavaScript theme={null}
  const res = await fetch('https://kliio.app/api/v1/me', {
    headers: { Authorization: 'Bearer YOUR_API_KEY' }
  })
  const { authenticated_as } = await res.json()
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "authenticated_as": {
      "id": "b3e1c2d4-...",
      "email": "jane@studio.com",
      "full_name": "Jane Smith",
      "company_name": "Studio Co.",
      "role": "owner"
    }
  }
  ```

  ```json 401 theme={null}
  {
    "error": "Unauthorized: Invalid or revoked API key"
  }
  ```
</ResponseExample>
