POST
/
api
/
v1
/
simulateDeposit
/
Simulate Deposit for On-Ramp (Sandbox)
curl --request POST \
  --url https://skala-sandbox.ripio.com/api/v1/simulateDeposit/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": "1500.00",
  "alias_or_cvu": "0100000000000000000001"
}'
{
  "message": "Deposit simulated successfully"
}

Authorizations

Authorization
string
header
required

Access token obtained via /oauth2/token/. Use as Authorization: Bearer <access_token>.

Body

application/json

Details for simulating the deposit.

amount
string
required

The amount of fiat to send.

Example:

"1500.00"

alias_or_cvu
string
required

Alias or CVU to which the deposit will be made (from onramp fiatPaymentInstructions).

Example:

"0100000000000000000001"

Response

Deposit simulation successful. Empty body or a success message.

message
string
Example:

"Deposit simulated successfully"