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

# Get Current Account

> Returns the account ID associated with the authenticated client

## Overview

Resolves the `account_id` associated with the `client_id` in your access token. Useful for applications that need to know which Telzino account their API credentials belong to.

Requires a valid Bearer access token whose `sub` claim ends with `@clients`.

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.telzino.com/v1/me \
    -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.telzino.com/v1/me', {
    headers: {
      'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
    }
  });

  const { account_id } = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://api.telzino.com/v1/me',
      headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'}
  )

  account_id = response.json()['account_id']
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "account_id": "m5b6g5jd-lanh-47yi-yhsg-cx56wjdah8h9"
  }
  ```

  ```json 400 theme={null}
  {
    "error": "invalid_token",
    "error_description": "Token does not contain a valid client_id"
  }
  ```

  ```json 401 theme={null}
  {
    "error": "invalid_request",
    "error_description": "Missing or malformed Authorization header"
  }
  ```

  ```json 404 theme={null}
  {
    "error": "not_found",
    "error_description": "No account_id found for this client_id"
  }
  ```
</ResponseExample>

## Response Fields

| Field        | Type          | Description                                         |
| ------------ | ------------- | --------------------------------------------------- |
| `account_id` | string (UUID) | Account ID associated with the authenticated client |
