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

# Account & Usage

> View your account details and API usage statistics

Returns your account details and current usage statistics. Requires authentication.

<Note>
  This endpoint **requires an API key**. See [Authentication](/guides/authentication).
</Note>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.dotlookup.dev/v1/auth/me \
    -H "X-API-Key: your_api_key_here"
  ```

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

  resp = requests.get(
      "https://api.dotlookup.dev/v1/auth/me",
      headers={"X-API-Key": "your_api_key"},
  )
  data = resp.json()
  print(f"Requests today: {data['usage']['requests_today']}")
  ```

  ```javascript JavaScript theme={null}
  const resp = await fetch("https://api.dotlookup.dev/v1/auth/me", {
    headers: { "X-API-Key": "your_api_key" },
  });
  const data = await resp.json();
  console.log(`Requests today: ${data.usage.requests_today}`);
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "account": {
      "id": 1,
      "email": "you@example.com",
      "name": "Jane Doe",
      "company": "Acme Logistics",
      "api_key": "dl_a1b2c3d4e5f6...",
      "tier": "default",
      "rate_limit": 100,
      "is_active": true,
      "created_at": "2025-03-20T14:30:00Z"
    },
    "usage": {
      "requests_today": 142,
      "requests_this_month": 3850
    }
  }
  ```
</ResponseExample>
