Converts an amount from one currency to another using the latest published reference rate, or returns a board of rates against a base currency. Rates are published once per working day, so the response includes the actual publication date, which may be the most recent prior working day on weekends and holidays.
You want today's rate or a conversion at the most recent published rate.
A rate as of a specific past date (use the historical operation) or a series over time (use the time series).
0.1 credits / request
Set these inside the intent when you run it.
The ISO 4217 code of the currency to convert from (e.g. USD, GBP). Defaults to EUR.
One or more ISO 4217 target currency codes to convert to. Omit to return all supported currencies.
The amount of the source currency to convert. Defaults to 1 (returns a unit rate).
Converted amount or unit rates against the base currency, with the actual publication date.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Currency Rates skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/currency/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"convert","from_currency":"USD","to_currency":"EUR,GBP","amount":1000}}'Example requests