Skip to main content
GET
/
balances
/
api
/
balance
Check your balance
curl --request GET \
  --url https://api.stage.rocka.live/balances/api/balance
{
  "amount": 53.93,
  "currency": "EUR",
  "type": "payin",
  "date": "2025-06-18"
}

Query Parameters

currency
string
required

The ISO code of the currency you want to check your balance for.

Example:

"EUR"

type
enum<string>
required

To check your payment balance, select payin. To check your payout balance, select payout.

Available options:
payin,
payout
Example:

"payin"

date
string<date-time>
required

Balance timestamp in the YYYY-MM-DD format. For example, 2025-06-18 for June 18th, 2025.

Response

OK

amount
integer

The amount on your balance.

currency
string

Balance currency.

type
string

Balance type.

date
string<date-time>

Balance timestamp.