Kalshi Get Deposits
Get deposit history from your Kalshi account. Returns each deposit with amount, status, type, and timestamps. Calculates total deposited capital. Ideal for: tracking starting capital, cash flow analysis, P&L reconciliation, account history.
Catalog action Utility kalshi
Get deposit history from your Kalshi account. Returns each deposit with amount, status, type, and timestamps. Calculates total deposited capital. Ideal for: tracking starting capital, cash flow analysis, P&L reconciliation, account history.
At a Glance
| Field | Value |
|---|---|
| Action ID | kalshi-get-deposits |
| Category | Utility |
| Connector | kalshi |
| Requires gas | No |
| Funds movement | None declared |
| Tags | kalshi, prediction-market, deposits, portfolio, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
limit | number | No | Maximum number of deposits to return (default: 100, max: 500) |
cursor | string | No | Cursor for pagination |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
deposits | array | Yes | List of deposits |
cursor | string | No | Cursor for fetching the next page |
totalDepositedDollars | number | No | Sum of all applied deposits in USD (excludes pending/failed/returned) |
totalDepositFeeDollars | number | No | Sum of all deposit fees in USD |
Examples
json{ "type": "kalshi-get-deposits", "payload": { "limit": 100, "cursor": "example-cursor" }, "children": [], "connector": { "type": "kalshi", "id": "conn_kalshi" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/kalshi-get-deposits/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.
