Skip to main content
GET
/
v0
/
account
curl https://api.getagentdrive.com/v0/account \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "usr_abc123",
  "email": "jane@example.com",
  "name": "Jane Doe",
  "plan": "pro",
  "created_at": "2026-01-01T00:00:00Z"
}
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.
curl https://api.getagentdrive.com/v0/account \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "usr_abc123",
  "email": "jane@example.com",
  "name": "Jane Doe",
  "plan": "pro",
  "created_at": "2026-01-01T00:00:00Z"
}

Response

id
string
Unique identifier for the account.
email
string
The email address associated with the account.
name
string
The name on the account.
plan
string
The current subscription plan.
created_at
string
ISO 8601 timestamp of when the account was created.