Skills/Currency Rates/Convert at the latest rate

Convert at the latest rate

0.1 credits / request

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.

Use when

You want today's rate or a conversion at the most recent published rate.

Not for

A rate as of a specific past date (use the historical operation) or a series over time (use the time series).

Cost

0.1 credits / request

What it accepts

Set these inside the intent when you run it.

from_currencyoptional

The ISO 4217 code of the currency to convert from (e.g. USD, GBP). Defaults to EUR.

to_currencyoptional

One or more ISO 4217 target currency codes to convert to. Omit to return all supported currencies.

amountoptional

The amount of the source currency to convert. Defaults to 1 (returns a unit rate).

What you get back

Converted amount or unit rates against the base currency, with the actual publication date.

Run it

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

  • How much is 1000 USD in EUR right now?
  • What is the current GBP to JPY exchange rate?
  • Convert 500 Australian dollars to Canadian dollars.