Get Balance
Get Balance
Description
Get the P2P account balance for a specified cryptocurrency, including total, frozen, and available balances.
HTTP Request
- GET /api/v3/p2p/balance
- Rate limit: 10/sec/UID
- Permission: UTA P2P (read)
Request
curl "https://api.bitget.com/api/v3/p2p/balance?token=USDT" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
Request Parameters
| Parameters | Type | Required | Description |
|---|---|---|---|
| token | String | Yes | Currency name |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"token": "USDT",
"totalBalance": "10000",
"frozenBalance": "500",
"availableBalance": "9500"
}
}
Response Parameters
| Parameters | Type | Description |
|---|---|---|
| token | String | Currency |
| totalBalance | String | Total balance (excluding frozen balance) |
| frozenBalance | String | Frozen balance |
| availableBalance | String | Available balance |