Skip to main content
GET
/
v1
/
currency-conversion
Get currency conversion rates
curl --request GET \
  --url https://api-sandbox.y.uno/v1/currency-conversion \
  --header 'private-secret-key: <api-key>' \
  --header 'public-api-key: <api-key>'
{
  "from": "USD",
  "to": "BRL",
  "rate": 5.12,
  "amount": 100,
  "converted_amount": 512,
  "timestamp": "2026-03-01T14:00:00.000Z"
}
This endpoint may return 404 in sandbox. Currency conversion requires enablement. Contact Yuno support if you need this feature.

Authorizations

public-api-key
string
header
required

Your public API key from the Yuno Dashboard

private-secret-key
string
header
required

Your private secret key (server-side only)

Query Parameters

from
string
required

Source ISO 4217 currency code

Example:

"USD"

to
string
required

Target ISO 4217 currency code

Example:

"BRL"

amount
number
required

Amount to convert

Example:

100

Response

Currency conversion result

from
string

Source currency code

Example:

"USD"

to
string

Target currency code

Example:

"BRL"

rate
number

Exchange rate

Example:

5.12

amount
number

Original amount

Example:

100

converted_amount
number

Converted amount

Example:

512

timestamp
string<date-time>
Example:

"2026-03-01T14:00:00.000Z"