Account Balance
Lightweight balance read for dashboards.
Endpoint​
GET /api/v2/accounts/{account_uuid}/balance
Response​
{
"balance": "1000.000000000",
"heldBalance": "50.000000000",
"availableBalance": "950.000000000",
"cards": 5,
"currency": "USD"
}
Card Creation Restrictions
Returns limits enforced when issuing new cards (max cards, allowed types, BIN rules, etc.).
Endpoint​
GET /api/v2/accounts/{account_uuid}/restrictions
Response​
Shape is provider-dependent. Example:
{
"maxCards": 10,
"currentCards": 2,
"allowedCardTypes": ["virtual"],
"restrictions": []
}
Refer to your deployment’s OpenAPI schema for the exact schema.