1. Wallets
Aurpay API
  • Aurpay Crypto Payment Integration
  • API-Key Authentication Method
    • Order
      • Get Payment URL
      • Get Payment Info
      • Get Orders
      • Get Orders Details
      • Get Orders Refund Info
      • Orders Refund
      • Get Transaction
      • Get Support Crypto Currency List
      • Get Support Real Currency List
    • Wallets
      • Get Wallets List
        GET
      • Withdraw Balance
        POST
      • Get Self Custody Wallets
        GET
    • Bitcoin Lightning Network
      • Get BLN Balance
      • Create BLN Order
      • Create BLN Withdraw
    • Get API-Key
      POST
  • Signature Authentication Method
    • Order
      • Get Payment URL
      • Get Payment Info
      • Get Support Real Currency List
      • Get Support Crypto Currency List
      • Get Orders
      • Get Orders Details
      • Get Transaction
      • Get Orders Refund Info
      • Orders Refund
    • Wallets
      • Get Wallets List
      • Withdraw Balance
      • Get Self Custody Wallets
    • Bitcoin Lightning Network
      • Get BLN Balance
      • Create BLN Order
      • Create BLN Withdraw
  • Callbakc Description
    • Callback Authentication Method
  1. Wallets

Get Self Custody Wallets

GET
/api/contract/balance
Get wallet balance in Self Custody mode.

Request

Authorization
API Key
Add parameter in header
API-Key
Example:
API-Key: ********************
or

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://dashboard.aurpay.net/api/contract/balance' \
--header 'API-Key: <api-key>'
Response Response Example
{
    "code": 0,
    "message": "ok",
    "data": [
        {
            "chain": "ETH",
            "currency": "ETH",
            "amount": 10.31299
        },
        {
            "chain": "ETH",
            "currency": "USDT-ERC20",
            "amount": 203
        },
        {
            "chain": "ETH",
            "currency": "DAI-ERC20",
            "amount": 190
        },
        {
            "chain": "ETH",
            "currency": "SHIB-ERC20",
            "amount": 890220
        },
        {
            "chain": "ETH",
            "currency": "USDC-ERC20",
            "amount": 0
        }
    ],
    "result": true
}
Previous
Withdraw Balance
Next
Bitcoin Lightning Network
Built with