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

# Get Account Info

> Retrieve information about your account. Requires a claimed drive — returns 403 for unclaimed (provisioned) drive keys.

<Note>
  This endpoint only works with claimed drive keys. If you provisioned a drive and haven't claimed it yet, use `GET /v0/account/usage` instead for basic usage info.
</Note>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.getagentdrive.com/v0/account \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "usr_abc123",
    "email": "jane@example.com",
    "name": "Jane Doe",
    "plan": "pro",
    "created_at": "2026-01-01T00:00:00Z"
  }
  ```
</ResponseExample>

## Response

<ResponseField name="id" type="string">
  Unique identifier for the account.
</ResponseField>

<ResponseField name="email" type="string">
  The email address associated with the account.
</ResponseField>

<ResponseField name="name" type="string">
  The name on the account.
</ResponseField>

<ResponseField name="plan" type="string">
  The current subscription plan.
</ResponseField>

<ResponseField name="created_at" type="string">
  ISO 8601 timestamp of when the account was created.
</ResponseField>
