Skip to main content
GET
/
partners
/
funds
List Funds
curl --request GET \
  --url https://pay-api.holdstation.com/partners/funds \
  --header 'Partner-App-Key: <partner-app-key>' \
  --header 'X-HSPay-Signature: <x-hspay-signature>' \
  --header 'X-HSPay-Timestamp: <x-hspay-timestamp>'
{
  "message": "success",
  "data": {
    "success": true,
    "code": 0,
    "error": "",
    "funds": [
      {
        "id": 1,
        "partner_id": "partner-xyz",
        "token": "USDT",
        "balance": "1000.50",
        "updated_at": { "seconds": 1700000000, "nanos": 0 }
      },
      {
        "id": 2,
        "partner_id": "partner-xyz",
        "token": "USDC",
        "balance": "500.00",
        "updated_at": { "seconds": 1700000000, "nanos": 0 }
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://pay-docs.holdstation.com/llms.txt

Use this file to discover all available pages before exploring further.

Partners can list all their fund balances across supported tokens. Each fund represents the available balance for a specific token that can be used for withdrawal orders.

Authentication

This endpoint requires signed authentication. Include the following headers on every request:
Partner-App-Key
string
required
Your partner app key.
X-HSPay-Signature
string
required
Base64-encoded Ed25519 signature of the sign data. See Partner Authentication for Signed API.
X-HSPay-Timestamp
string
required
Unix timestamp (seconds) of the request. Must be within 60 seconds of server time.
{
  "message": "success",
  "data": {
    "success": true,
    "code": 0,
    "error": "",
    "funds": [
      {
        "id": 1,
        "partner_id": "partner-xyz",
        "token": "USDT",
        "balance": "1000.50",
        "updated_at": { "seconds": 1700000000, "nanos": 0 }
      },
      {
        "id": 2,
        "partner_id": "partner-xyz",
        "token": "USDC",
        "balance": "500.00",
        "updated_at": { "seconds": 1700000000, "nanos": 0 }
      }
    ]
  }
}