GET
/
nps
/
balance
cURL
curl --request GET \
  --url https://apidev.nusd.me/nps/balance \
  --header 'BIZ-API-KEY: <api-key>' \
  --header 'Biz-Api-Nonce: <api-key>' \
  --header 'Biz-Api-Signature: <api-key>'
{
  "status": 0,
  "data": {
    "available": "4895.90",
    "hold": "4895.90"
  },
  "msg": "<string>"
}

Authorizations

BIZ-API-KEY
string
header
required

API key. Must be included in the request header.

Biz-Api-Nonce
string
header
required

Timestamp. Must be included in the request header.

Biz-Api-Signature
string
header
required

Signature string. Must be included in the request header.

Query Parameters

wallet_id
string
required

Wallet ID.

Example:

"e9167870-e18b-4e82-8b87-92ec7ede8e45"

Response

Request succeeded. Returns the wallet balance.

status
integer

Status code. 0 indicates success.

Example:

0

data
object

Balance information.

msg
string

Error message. Present when status is non-zero.