Skip to main content
GET
/
fees
/
balance
Get Fee Balance
curl --request GET \
  --url https://api.coinvoyage.io/v3/fees/balance \
  --header 'Authorization: <api-key>' \
  --header 'Authorization-Signature: <authorization-signature>'
{
  "fee_balance": {
    "amount_cents": 150,
    "fiat": "USD"
  }
}

Authorizations

Authorization
string
header
required

HMAC-SHA256 signature. See the Authorization-Signature header parameter on signed operations.

Headers

Authorization-Signature
string
required

HMAC-SHA256 signature header: 'APIKey=<api_key>,signature=,timestamp=<unix_timestamp>'. The signature is computed over METHOD + path (with the /v3 prefix stripped) + timestamp.

Response

Claimable fee balance

fee_balance
object
required
Example:
{ "amount_cents": 150, "fiat": "USD" }