Skip to main content
POST
/
balance
/
get
Get current balance
curl --request POST \
  --url https://billing.platform.arb.inc/balance/get \
  --header 'Authorization: Bearer <token>'
{
  "balanceID": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "userID": "2720f109-0caf-4c62-af22-5d08c853711c",
  "orgID": "3840f219-1dbf-5d73-bg33-6e19d964822d",
  "credits": 150.5,
  "dollars": 25.75,
  "created": "2025-08-15T10:30:00.000Z",
  "updated": "2025-08-15T14:22:00.000Z"
}

Authorizations

Authorization
string
header
required

access token

Response

200 - application/json

Current balance information

balanceID
string
Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

userID
string<uuid>
Example:

"2720f109-0caf-4c62-af22-5d08c853711c"

orgID
string<uuid>
Example:

"3840f219-1dbf-5d73-bg33-6e19d964822d"

credits
number

Current credit balance

Example:

150.5

dollars
number

Current dollar balance

Example:

25.75

created
string<date-time>
Example:

"2025-08-15T10:30:00.000Z"

updated
string<date-time>
Example:

"2025-08-15T14:22:00.000Z"