XreplyAIDevelopers
API ReferenceAccount

Get the authenticated account

Returns the account profile, subscription tier, and workspace context. Requires any valid key (no specific scope).

GET
/users/me
AuthorizationBearer <token>

A personal API key created in the dashboard (Starter, Pro, and Team plans).

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/users/me"
{  "user": {    "id": 4021,    "email": "founder@example.com",    "tier": "pro",    "ai_credits_remaining": null,    "subscription_status": "active",    "subscription_ends_at": "2026-08-01T00:00:00Z",    "cancel_at_period_end": false,    "has_active_subscription": true,    "created_at": "2026-01-14T09:12:00Z",    "team": {      "id": 88,      "name": "Acme",      "role": "admin"    }  }}