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

# Redeem

> Redeem stablecoins to fiat or settle to a destination bank account.



## OpenAPI

````yaml POST /v1/redeem
openapi: 3.1.0
info:
  title: REM API
  description: >-
    Infrastructure for the new financial layer — stablecoin issuance and
    movement for institutions across Tempo, Solana, Base, and Arc.
  version: 1.0.0
servers:
  - url: https://api.rem.money
  - url: https://devnet.api.rem.money
security:
  - bearerAuth: []
paths:
  /v1/redeem:
    post:
      tags:
        - Stablecoins
      summary: Redeem (off-ramp)
      description: Redeem stablecoins to fiat or settle to a destination bank account.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
                - walletId
                - currency
                - bankAccount
              properties:
                walletId:
                  type: string
                currency:
                  type: string
                  enum:
                    - SGD
                    - HKD
                    - USD
                    - JPY
                    - AUD
                bankAccount:
                  type: string
                amount:
                  type: string
      responses:
        '202':
          description: Redeem accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Transaction'
components:
  schemas:
    Transaction:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
          enum:
            - pending
            - settled
            - failed
        tx_hash:
          type: string
        chain:
          type: string
        amount:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````