arrow_back All endpoints

Currency Exchange Rates

POST/api/v1/tools/currency-rates1 credit per callcurrencyexchange rateforexmoney

Returns current exchange rates against a base currency. Rates are cached, so repeated calls inside the cache window return the same figures and stay fast. Indicative rates for calculation and display - not a dealing price.

receipt_long
Why 1 credit?

Served from a shared cache that is refreshed on a schedule rather than per call, so an individual request is close to free for us.

Any HTTP client works. Replace the key with one from your dashboard.

bash
curl -X POST https://toolkitbackend-j69m.onrender.com/api/v1/tools/currency-rates \
  -H "Authorization: Bearer tb_live_<your_api_key>" \
  -H "Content-Type: application/json" \
  -d '{
  "baseCurrency": "EUR"
}'

Input

FieldTypeRequiredDefaultDescription
baseCurrencystringoptionalUSD ISO 4217 code to quote against. Defaults to USD.

Output

FieldTypeDescription
basestringThe base currency the rates are quoted against.
ratesobjectCurrency code to rate mapping.
fetchedAtstringISO-8601 timestamp of the underlying data.

Try it

Sends a real POST /api/v1/tools/currency-rates from your browser and charges 1 credit to your account.

Sign in to run this endpoint. New accounts start with free credits.