Skip to main content
POST
/
currency-conversion
Get Conversion Rate
curl --request POST \
  --url https://api-sandbox.y.uno/v1/currency-conversion \
  --header 'Content-Type: application/json' \
  --header 'X-Private-Secret-Key: <api-key>' \
  --header 'X-Public-Api-Key: <api-key>' \
  --data '
{
  "account_id": "fe14c7c6-c75e-43b7-bdbe-4c87ad52c482",
  "amount": {
    "value": 10000,
    "currency": "COP",
    "currency_conversion": {
      "cardholder_currency": "USD"
    }
  },
  "provider_data": {
    "id": "CIBC"
  },
  "payment_method": {
    "card": {
      "card_data": {
        "number": "4111111111111111",
        "holder_name": "JOHN DOE",
        "expiration_month": 12,
        "expiration_year": 25
      }
    }
  }
}
'
"{\n    \"id\": \"599cc714-9bb6-4a3c-8465-c360cd47e04e\",\n    \"amount\": {\n        \"value\": 10000,\n        \"currency\": \"COP\",\n        \"currency_conversion\": {\n            \"cardholder_currency\": \"USD\",\n            \"cardholder_amount\": 2.58,\n            \"rate\": 3879.812207,\n            \"provider_data\": {\n                \"id\": \"CIBC\",\n                \"transaction_id\": \"274c4fc9a1e3c27625fc4d925e0331783c3c5c94358280158d3980e97ac66795a80970d48c176078f394106345c05215431bbc6260a6980db3a2e0b753db1a3f32d0c8adfc02c18794dc07ac1c13a14e581a3d78ba4b9c5afdae537f38cc495628239b7470a997cc8d5b51ae787603b64de3b19cea09f825f6fd13896656b75092bd7fe19a0560df29b94\",\n                \"response_code\": \"2000\",\n                \"response_message\": \"Successful\",\n                \"raw_response\": {\n                    \"fxRateInquiryResponse\": {\n                        \"localDate\": 210,\n                        \"localTime\": 180927,\n                        \"merchantID\": \"18695684\",\n                        \"rateEndTime\": 1739212767659,\n                        \"ratePreferenceCode\": \"R1\",\n                        \"rateStartTime\": 1739210967659,\n                        \"rateValidityPeriod\": 30,\n                        \"rates\": [\n                            {\n                                \"cardholderAmount\": 2.58,\n                                \"cardholderCurrency\": \"840\",\n                                \"merchantAmount\": 10000,\n                                \"merchantCurrency\": \"170\",\n                                \"rate\": 3879.812207,\n                                \"rateInquiryRef\": \"274c4fc9a1e3c27625fc4d925e0331783c3c5c94358280158d3980e97ac66795a80970d48c176078f394106345c05215431bbc6260a6980db3a2e0b753db1a3f32d0c8adfc02c18794dc07ac1c13a14e581a3d78ba4b9c5afdae537f38cc495628239b7470a997cc8d5b51ae787603b64de3b19cea09f825f6fd13896656b75092bd7fe19a0560df29b94\"\n                            }\n                        ],\n                        \"responseCode\": \"2000\",\n                        \"responseMessage\": \"Successful\",\n                        \"sessionId\": \"2a587fa2-e7da-11ef-8b88-7e36493c761f\",\n                        \"terminalID\": \"CT000001\",\n                        \"traceNumber\": 3594\n                    }\n                }\n            }\n        }\n    },\n    \"expired_at\": \"2025-02-10T18:39:27Z\"\n}"
This page will help you get started with Currency conversions. For more information on how to use the currency conversion service, please refer to the Currency conversion page in the guides section.

Authorizations

X-Public-Api-Key
string
header
default:X-Public-Api-Key
required
X-Private-Secret-Key
string
header
default:X-Private-Secret-Key
required

Body

application/json
account_id
string
required

The unique identifier of the account. You find this information on the Yuno dashboard (UUID; 36 chars).

amount
object
required

Amount to be converted

provider_data
object
required

Provider information

payment_method
object

Payment method information. Provide either token, vaulted_token, or card.

Response

200

id
string
Example:

"599cc714-9bb6-4a3c-8465-c360cd47e04e"

amount
object
expired_at
string
Example:

"2025-02-10T18:39:27Z"