Skip to main content
POST
/
v1
/
fx-quotes
Create FX Quote
curl --request POST \
  --url https://api.cadanapay.com/v1/fx-quotes \
  --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"
}

Body

application/json
from
string
required
Example:

"USD"

to
string
required
Example:

"PHP"

Response

200 - application/json

create an fx quote

id
string<uuid>
required
Example:

"57c74c5d-38a0-41e7-a19e-161f16dc4898"

from
string
required
Example:

"USD"

to
string
required
Example:

"PHP"

rate
string
required
Example:

"56.1234"

expirationTimestamp
string<date-time>
required
Example:

"2025-05-29T21:42:52Z"