Kalshi Get Withdrawals
Get withdrawal history from your Kalshi account. Returns each withdrawal with amount, status, type, and timestamps. Calculates total withdrawn. Ideal for: cash flow analysis, P&L reconciliation, account history, capital tracking.
Catalog action Utility kalshi
Get withdrawal history from your Kalshi account. Returns each withdrawal with amount, status, type, and timestamps. Calculates total withdrawn. Ideal for: cash flow analysis, P&L reconciliation, account history, capital tracking.
At a Glance
| Field | Value |
|---|---|
| Action ID | kalshi-get-withdrawals |
| Category | Utility |
| Connector | kalshi |
| Requires gas | No |
| Funds movement | None declared |
| Tags | kalshi, prediction-market, withdrawals, portfolio, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
limit | number | No | Maximum number of withdrawals to return (default: 100, max: 500) |
cursor | string | No | Cursor for pagination |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
withdrawals | array | Yes | List of withdrawals |
cursor | string | No | Cursor for fetching the next page |
totalWithdrawnDollars | number | No | Sum of all applied withdrawals in USD (excludes pending/failed/returned) |
totalWithdrawalFeeDollars | number | No | Sum of all withdrawal fees in USD |
Examples
json{ "type": "kalshi-get-withdrawals", "payload": { "limit": 100, "cursor": "example-cursor" }, "children": [], "connector": { "type": "kalshi", "id": "conn_kalshi" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/kalshi-get-withdrawals/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "limit": 100, "cursor": "example-cursor" }}'
Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.
