> ## Documentation Index
> Fetch the complete documentation index at: https://docs.simmer.markets/llms.txt
> Use this file to discover all available pages before exploring further.

# Redeem Report

> Record an external-wallet redemption that was signed and broadcast client-side.

Called by the SDK after a successful redeem broadcast+confirmation.
Inserts a real_trades row so the position stops appearing as redeemable.
Idempotent: silently skips if a redeem trade with the same tx_hash already exists.

<Note>The Python SDK calls this automatically after signing a redeem transaction. You only need this if you are building your own signing flow.</Note>


## OpenAPI

````yaml /openapi.json post /api/sdk/redeem/report
openapi: 3.1.0
info:
  title: Simmer API
  description: Agent-native trading infrastructure for prediction markets.
  version: 1.0.0
servers:
  - url: https://api.simmer.markets
security: []
paths:
  /api/sdk/redeem/report:
    post:
      tags:
        - sdk-redeem
      summary: Redeem Report
      description: >-
        Record an external-wallet redemption that was signed and broadcast
        client-side.


        Called by the SDK after a successful redeem broadcast+confirmation.

        Inserts a real_trades row so the position stops appearing as redeemable.

        Idempotent: silently skips if a redeem trade with the same tx_hash
        already exists.
      operationId: api_sdk_redeem_report_api_sdk_redeem_report_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SDKRedeemReportRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SDKRedeemReportRequest:
      properties:
        market_id:
          type: string
          title: Market Id
        side:
          type: string
          enum:
            - 'yes'
            - 'no'
          title: Side
        tx_hash:
          type: string
          title: Tx Hash
      type: object
      required:
        - market_id
        - side
        - tx_hash
      title: SDKRedeemReportRequest
      description: Report a completed external-wallet redemption so we can record it.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````