Skip to main content
POST
/
trade
/
ripio-wallet
/
transfer
/
{currency}
Ripio Wallet - Execute Transfer
curl --request POST \
  --url https://api.ripio.com/trade/ripio-wallet/transfer/{currency} \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --header 'signature: <signature>' \
  --header 'timestamp: <timestamp>' \
  --data '
{
  "amount": "100",
  "direction": "TO_WALLET"
}
'
{
  "data": 123,
  "error_code": null,
  "message": null
}

Headers

authorization
string
required

The API key as a string.

signature
string
required

See the Generating Signature section for more details.

timestamp
number
required

A timestamp in milliseconds. See the Timestamp Security section for more details.

timstamp-tolerance
number

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 section for more details.

Path Parameters

currency
string
required

This property was not properly documented

Body

application/json
amount
string
required

Amount to transfer in the specified currency. Must be greater than 0. The amount is validated against available balance and minimum transfer limits.

Example:

"100"

direction
string
required

Transfer direction indicating the fund flow:

  • TO_WALLET: Transfer from Ripio Trade to Ripio Wallet
  • FROM_WALLET: Transfer from Ripio Wallet to Ripio Trade
Example:

"TO_WALLET"

Response

200 - application/json

Ok

data
number
required
error_code
number
required
Example:

null

message
string
required
Example:

null