GET
/
v1
/
balance
/
{currencyId}
curl --request GET \
  --url 'https://doc-api.oppiwallet.com/api/v1/balance/6698aec7f188ae24c673da1c' \
  --header 'signatureToken: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...' \
  --header 'Content-Type: application/json'
{
  "balance": 0.564333586
}

Authentication

signatureToken
string
required

A JWT token required for API authentication. Generate JWT token as explained in section Generate JWT Token using empty string.

Headers

Content-Type
string
required

Must be set to application/json.

Path Parameters

currencyId
string
required

The ID of the currency for which to retrieve the balance.

Request

No request body is required for this endpoint.

curl --request GET \
  --url 'https://doc-api.oppiwallet.com/api/v1/balance/6698aec7f188ae24c673da1c' \
  --header 'signatureToken: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...' \
  --header 'Content-Type: application/json'

Response

Returns the current balance for the specified currency.

balance
number
required

The available balance in the wallet for the specified currency.

{
  "balance": 0.564333586
}