Skip to main content
POST
/
api
/
sdk
/
redeem
/
report
Redeem Report
curl --request POST \
  --url https://api.simmer.markets/api/sdk/redeem/report \
  --header 'Content-Type: application/json' \
  --data '
{
  "market_id": "<string>",
  "side": "yes",
  "tx_hash": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}
The Python SDK calls this automatically after signing a redeem transaction. You only need this if you are building your own signing flow.

Body

application/json

Report a completed external-wallet redemption so we can record it.

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

Response

Successful Response