> ## 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.

# Transfer

> Move stablecoins between REM-managed wallets, accounts, and institutions. REM picks the optimal chain unless overridden.



## OpenAPI

````yaml POST /v1/transfer
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/transfer:
    post:
      tags:
        - Stablecoins
      summary: Transfer (instant settlement)
      description: >-
        Move stablecoins between REM-managed wallets, accounts, and
        institutions. REM picks the optimal chain unless overridden.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
                - from
                - to
                - amount
              properties:
                from:
                  type: string
                to:
                  type: string
                amount:
                  type: string
                currency:
                  type: string
                  default: USDC
                chain:
                  type: string
                  enum:
                    - tempo
                    - solana
                    - base
                    - arc
                    - auto
                  default: auto
                idempotency_key:
                  type: string
      responses:
        '202':
          description: Transfer 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

````