Currency Exchange Rates
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.
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.
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
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
baseCurrency | string | optional | USD | ISO 4217 code to quote against. Defaults to USD. |
Output
| Field | Type | Description |
|---|---|---|
base | string | The base currency the rates are quoted against. |
rates | object | Currency code to rate mapping. |
fetchedAt | string | ISO-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.