Skip to main content
POST
/
api
/
v1
/
account
/
users
/
{uid}
/
accounts
/
{aid}
/
transfers
/
simulate
Simulate transfer
curl --request POST \
  --url https://sandbox-revo-api.raliopay.com/api/v1/account/users/{uid}/accounts/{aid}/transfers/simulate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "origin": {
    "currency": "EUR",
    "amount": 1000
  },
  "recipient": {
    "accountId": "b2c3d4e5-f6a7-4b8c-9d0e-1f2a3b4c5d6e"
  }
}
'
{
  "destination": {
    "currency": "EUR",
    "amount": 1000
  },
  "origin": {
    "currency": "EUR",
    "amount": 1000
  },
  "quote": {
    "rate": 1.08,
    "timestamp": "2025-01-15T10:30:00.000Z",
    "validUntil": "2025-01-15T10:30:30.000Z"
  },
  "quoteId": "c3d4e5f6-a7b8-4c9d-0e1f-2a3b4c5d6e7f"
}

Authorizations

Authorization
string
header
required

API Key for accessing management endpoints

Path Parameters

uid
string
required

User ID

aid
string
required

Account ID

Body

application/json

Transfer details

origin
object
required
recipient
object
required

Response

OK

destination
object
origin
object
quote
object
quoteId
string
Example:

"c3d4e5f6-a7b8-4c9d-0e1f-2a3b4c5d6e7f"