Headers
-
Broker access key identifier.
Format should match the following pattern:
^[A-Za-z0-9._~-]{1,64}$. -
Keyed BLAKE2b-256 signature (hex lowercase, 64 characters).
Format should match the following pattern:
^[0-9a-f]{64}$. -
RFC3339 timestamp with milliseconds (e.g., 2025-10-30T06:00:34.075Z). Must be within clock_skew_tolerance (default 5m) of server time.
Path parameters
-
Broker-supplied account identifier; length 1..128; charset [A-Za-z0-9._~-].
Maximum length is
128. Format should match the following pattern:^[A-Za-z0-9._~-]{1,128}$.
GET
/trading/accounts/{account_id}/payouts
curl \
--request GET 'https://api.example.com/v1/trading/accounts/{account_id}/payouts' \
--header "PRE-ACCESS-KEY: string" \
--header "PRE-ACCESS-SIGNATURE: string" \
--header "PRE-ACCESS-TIMESTAMP: 2026-05-04T09:42:00Z"
Response examples (200)
{
"items": [
{
"market_id": "TRUMP-WIN-2024",
"account_id": "broker-client-1",
"qty_held_at_settlement": {
"units": 10,
"nanos": 0
},
"settlement_price": {
"units": 1,
"nanos": 0
},
"payout_amount": {
"units": 10,
"nanos": 0
},
"settled_at_wall_time_ns": 1701388800000000000
}
],
"next_cursor": "string"
}
Response examples (400)
{
"error_code": "string",
"message": "string",
"details": {}
}
Response examples (503)
{
"error_code": "string",
"message": "string",
"details": {}
}