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

# Execute Transfer

> Executes a transfer of funds between Ripio Trade and Ripio Wallet.

The transfer can be initiated in both directions:
- **TO_WALLET**: Moves funds from Ripio Trade to Ripio Wallet
- **FROM_WALLET**: Moves funds from Ripio Wallet to Ripio Trade

---

**Authorization**

- Requires a valid API key.
- Required API-key permission(s):
  - Internal Balance Transfer (Write)



## OpenAPI

````yaml post /trade/ripio-wallet/transfer/{currency}
openapi: 3.0.0
info:
  title: Ripio Gateway
  description: Ripio API - Services documentation.
  version: 0.1.0
  x-logo:
    url: https://cwstatic.nyc3.digitaloceanspaces.com/1996/bitcointrade.png
servers:
  - url: https://api.ripio.com
    description: Production environment
security: []
paths:
  /trade/ripio-wallet/transfer/{currency}:
    post:
      tags:
        - Ripio Trade
      summary: Ripio Wallet - Execute Transfer
      description: |-
        Executes a transfer of funds between Ripio Trade and Ripio Wallet.

        The transfer can be initiated in both directions:
        - **TO_WALLET**: Moves funds from Ripio Trade to Ripio Wallet
        - **FROM_WALLET**: Moves funds from Ripio Wallet to Ripio Trade

        ---

        **Authorization**

        - Requires a valid API key.
        - Required API-key permission(s):
          - Internal Balance Transfer (Write)
      parameters:
        - in: path
          name: currency
          required: true
          description: This property was not properly documented
          schema:
            type: string
        - in: header
          name: authorization
          required: true
          description: The API key as a string.
          schema:
            type: string
        - in: header
          name: signature
          required: true
          description: >-
            See the [Generating
            Signature](/static/api/authentication#generating-signature) section
            for more details.
          schema:
            type: string
        - in: header
          name: timestamp
          required: true
          description: >-
            A timestamp in milliseconds. See the [Timestamp
            Security](/static/api/authentication#timestamp-security) section for
            more details.
          schema:
            type: number
        - in: header
          name: timstamp-tolerance
          required: false
          description: >-
            An additional, non-required parameter, that you can send to specify
            the number of milliseconds after the timestamp for the request to be
            valid. See the [Timestamp
            Security](/static/api/authentication#timestamp-security) section for
            more details.
          schema:
            type: number
      requestBody:
        content:
          application/json:
            schema:
              properties:
                amount:
                  description: >-
                    Amount to transfer in the specified currency. Must be
                    greater than 0.

                    The amount is validated against available balance and
                    minimum transfer limits.
                  type: string
                  example: '100'
                direction:
                  description: |-
                    Transfer direction indicating the fund flow:
                    - **TO_WALLET**: Transfer from Ripio Trade to Ripio Wallet
                    - **FROM_WALLET**: Transfer from Ripio Wallet to Ripio Trade
                  type: string
                  example: TO_WALLET
              required:
                - amount
                - direction
              type: object
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                description: Ok
                properties:
                  data:
                    type: number
                  error_code:
                    type: number
                    example: null
                  message:
                    type: string
                    example: null
                required:
                  - data
                  - error_code
                  - message
                type: object

````