Skip to main content
POST
/
transfers
/
preview
cURL
curl --request POST \
  --url https://api.example.com/transfers/preview \
  --header 'Content-Type: application/json' \
  --data '
{
  "recipient_country_code": "<string>",
  "amount": 123
}
'
{
  "success": true,
  "message": "<string>",
  "data": {
    "recipient_name": "<string>",
    "reference": "<string>",
    "amount": 123,
    "currency_code": "<string>",
    "url": "<string>",
    "channels": [
      "<string>"
    ]
  }
}

Body

application/json
recipient_country_code
string
required
Example:

"NGA"

amount
number
required
Example:

3000

Response

201 - application/json

Preview created

success
boolean
message
string
data
object