Skip to main content
GET
/
partners
/
funds
/
balance
Get Fund Balance
curl --request GET \
  --url https://pay-api.holdstation.com/partners/funds/balance \
  --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": "",
    "fund": {
      "id": 1,
      "partner_id": "partner-xyz",
      "token": "USDT",
      "balance": "1000.50",
      "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 query the balance of a specific fund by token symbol.

Authentication

Partner-App-Key
string
required
Your partner app key.
X-HSPay-Signature
string
required
Base64-encoded Ed25519 signature of the sign data.
X-HSPay-Timestamp
string
required
Unix timestamp (seconds) of the request. Must be within 60 seconds of server time.

Query Parameters

token
string
required
Token symbol (e.g., USDT, USDC).
{
  "message": "success",
  "data": {
    "success": true,
    "code": 0,
    "error": "",
    "fund": {
      "id": 1,
      "partner_id": "partner-xyz",
      "token": "USDT",
      "balance": "1000.50",
      "updated_at": { "seconds": 1700000000, "nanos": 0 }
    }
  }
}