You are viewing documentation for Polymarket US πΊπΈ
curl --request GET \
--url https://api.polymarket.us/v1/account/balances \
--header 'X-PM-Access-Key: <api-key>' \
--header 'X-PM-Signature: <api-key>' \
--header 'X-PM-Timestamp: <api-key>'{
"balances": [
{
"currentBalance": 123,
"currency": "<string>",
"lastUpdated": "2023-11-07T05:31:56Z",
"buyingPower": 123,
"assetNotional": 123,
"assetAvailable": 123,
"pendingCredit": 123,
"openOrders": 123,
"unsettledFunds": 123,
"pendingWithdrawals": [
{
"id": "<string>",
"name": "<string>",
"balance": 123,
"description": "<string>",
"acknowledged": true,
"bankId": "<string>",
"creationTime": "2023-11-07T05:31:56Z",
"destinationAccountName": "<string>"
}
],
"marginRequirement": 123,
"balanceReservation": 123
}
]
}Get userβs current account balances including buying power, asset values, and pending transactions
curl --request GET \
--url https://api.polymarket.us/v1/account/balances \
--header 'X-PM-Access-Key: <api-key>' \
--header 'X-PM-Signature: <api-key>' \
--header 'X-PM-Timestamp: <api-key>'{
"balances": [
{
"currentBalance": 123,
"currency": "<string>",
"lastUpdated": "2023-11-07T05:31:56Z",
"buyingPower": 123,
"assetNotional": 123,
"assetAvailable": 123,
"pendingCredit": 123,
"openOrders": 123,
"unsettledFunds": 123,
"pendingWithdrawals": [
{
"id": "<string>",
"name": "<string>",
"balance": 123,
"description": "<string>",
"acknowledged": true,
"bankId": "<string>",
"creationTime": "2023-11-07T05:31:56Z",
"destinationAccountName": "<string>"
}
],
"marginRequirement": 123,
"balanceReservation": 123
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.polymarket.us/llms.txt
Use this file to discover all available pages before exploring further.
Your API key ID (UUID). Generate at polymarket.us/developer.
Unix timestamp in milliseconds. Must be within 30 seconds of server time.
Base64-encoded Ed25519 signature of timestamp + method + path. See Authentication for details.
User's current account balances
List of account balances by currency
Show child attributes