GET
/
accounts
/
me
Get account profile
curl --request GET \
  --url https://api.generect.com/api/v1/accounts/me/ \
  --header 'Authorization: <api-key>'
{
  "data": {
    "id": "user_123",
    "email": "user@company.com",
    "name": "John Doe",
    "plan": "Pro",
    "credits": {
      "balance": 5000,
      "used_this_month": 1234,
      "monthly_limit": 10000
    },
    "preview_tier": true
  }
}

Use Case:

Retrieve the current account profile, credit balance, monthly usage, and Preview tier eligibility.

Authorizations

Authorization
string
header
required

Use the required Token prefix. Example: Authorization: Token xxxxxxxxx

Response

Account profile

data
object