Skip to main content
POST
/
api
/
sdk
/
redeem
Redeem
curl --request POST \
  --url https://api.simmer.markets/api/sdk/redeem \
  --header 'Content-Type: application/json' \
  --data '
{
  "market_id": "<string>",
  "side": "yes"
}
'
{
  "success": true,
  "tx_hash": "<string>",
  "unsigned_tx": {},
  "error": "<string>"
}
Managed wallet: Server signs and submits, returns tx_hash. External wallet: Server returns unsigned_tx for you to sign. The Python SDK handles this automatically with client.redeem().
Use GET /api/sdk/positions and look for "redeemable": true to find positions ready to redeem.

Body

application/json

Request to redeem a winning Polymarket position via SDK.

market_id
string
required
side
enum<string>
required
Available options:
yes,
no

Response

Successful Response

Response from SDK redemption.

success
boolean
required
tx_hash
string | null
unsigned_tx
Unsigned Tx · object
error
string | null