v2
latestOpenAPI 3.0.32026-07-26112274.7 KBAccount snapshot — balance, tier, and credit tranches
Returns the account snapshot for the current user: credit balance, active credit tranches, auto-recharge settings, and current pricing tier. All monetary fields are integer EUR cents (1 EUR = 100 cents).
get/api/v1/me
Response
Account snapshot for the authenticated user.
Example response
{
"user_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"balance_eur_cents": 4750,
"available_eur_cents": 4250,
"api_usage_tier": 1,
"lifetime_paid_cents": 10000,
"payment_count": 2,
"has_ever_paid": true,
"role": "user",
"euro_tranches": [
{
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"source": "stripe",
"initial_eur_cents": 5000,
"remaining_eur_cents": 4750,
"created_at": "2026-05-01T09:00:00Z",
"expires_at": "2027-05-01T09:00:00Z"
}
]
}