Skip to main content
GET
https://api.cuttr.com
/
api
/
platform
/
teams
/
{teamId}
/
wallet
Get Wallet
curl --request GET \
  --url https://api.cuttr.com/api/platform/teams/{teamId}/wallet \
  --header 'X-API-Key: <x-api-key>'
{
  "balance_cents": 2500,
  "total_spent_cents": 7500,
  "total_topped_up_cents": 10000,
  "active": true
}
Returns the team’s current wallet balance, total amount spent, and total amount topped up.

Headers

X-API-Key
string
required
Your API key. Create one from the dashboard.

Path parameters

teamId
integer
required
Your team ID.

Response

balance_cents
integer
Current wallet balance in cents. For example, 2500 = $25.00.
total_spent_cents
integer
Cumulative amount spent on API calls, in cents.
total_topped_up_cents
integer
Cumulative amount added to the wallet, in cents.
active
boolean
Whether the billing account is active.
{
  "balance_cents": 2500,
  "total_spent_cents": 7500,
  "total_topped_up_cents": 10000,
  "active": true
}