curl --request POST \
--url https://api.cadanapay.com/v1/fx-quotes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from": "USD",
"to": "PHP"
}
'{
"id": "57c74c5d-38a0-41e7-a19e-161f16dc4898",
"from": "USD",
"to": "PHP",
"rate": "56.1234",
"expirationTimestamp": "2025-05-29T21:42:52Z"
}Create an fx quote
curl --request POST \
--url https://api.cadanapay.com/v1/fx-quotes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from": "USD",
"to": "PHP"
}
'{
"id": "57c74c5d-38a0-41e7-a19e-161f16dc4898",
"from": "USD",
"to": "PHP",
"rate": "56.1234",
"expirationTimestamp": "2025-05-29T21:42:52Z"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.