Geoswift Platform
  1. Get Account Balance
  • Overview
  • Authentication
  • Settlement in ChinaMainland
    • Get Account Balance
      • Get Account
        GET
      • Get Account Balance
        GET
    • Transaction Declaration Filing
      • Submit Transaction Declarations (Batch)
      • Query Declaration Processing Result
      • File Download
    • Declaration Quota Query
      • Declaration Quota Query
    • Quotation
      • Inquiry Quotation
      • Confirm Quotation
      • Inquiry Quotation Detail
    • Create a Transaction
      • Create a Transaction
    • Transaction Query
      • Transaction Query-payment summary
    • Specification
      • Bank List
      • Province/City Code
  • About Us
  1. Get Account Balance

Get Account Balance

Developing
GET
/api/v1/accounts/{accountId}/balances
This endpoint retrieves the current balance(s) for the authenticated merchant account. You may query a specific currency or fetch all available balances at once.

Request

Path Params

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.geoaccount.com/api/v1/accounts//balances?currency=CNY' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.xxxxx' \
--header 'GS-API-Key: gs_live_abc123def456789'

Responses

🟢200Success
application/json
Body

Example
{
    "accountId": "acc_123",
    "asOf": "2026-03-27T11:40:00Z",
    "balances": [
        {
            "asset": {
                "code": "USD",
                "type": "fiat"
            },
            "balance": {
                "total": 1000.00,
                "available": 900.00,
                "locked": 100.00,
                "pending": 0.00
            }
        },
        {
            "asset": {
                "code": "USDT",
                "type": "crypto",
                "network": "TRON"
            },
            "balance": {
                "total": 500.00,
                "available": 500.00,
                "locked": 0.00,
                "pending": 0.00
            }
        }
    ]
}
Modified at 2026-03-27 07:51:22
Previous
Get Account
Next
Transaction Declaration Filing
Built with