Polymarket Get Redeemable Positions
Get positions that are redeemable (resolved on-chain) for the authenticated user on Polymarket. Uses the Data API's redeemable field with on-chain balance verification to filter stale data. Ideal for: automated redemption workflows, finding claimable winnings, portfolio cleanup.
Catalog action Utility wallet
Get positions that are redeemable (resolved on-chain) for the authenticated user on Polymarket. Uses the Data API's redeemable field with on-chain balance verification to filter stale data. Ideal for: automated redemption workflows, finding claimable winnings, portfolio cleanup.
At a Glance
| Field | Value |
|---|---|
| Action ID | polymarket-get-redeemable-positions |
| Category | Utility |
| Connector | wallet |
| Requires gas | No |
| Funds movement | None declared |
| Tags | polymarket, positions, redeem, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
market | string | No | Filter positions by market condition ID |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
positions | array | Yes | Array of redeemable position records (resolved on-chain) |
count | number | Yes | Number of redeemable positions |
totalPositions | number | Yes | Total positions checked |
failedChecks | number | No | Number of on-chain resolution checks that failed (omitted if zero) |
walletAddress | string | Yes | The wallet address queried |
Examples
json{ "type": "polymarket-get-redeemable-positions", "payload": { "market": "example-market" }, "children": [], "connector": { "type": "wallet", "id": "conn_wallet" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/polymarket-get-redeemable-positions/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "market": "example-market" }}'
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.
