The catalog
Every API, one clean contract.
64 APIs · all speak the same { ok, data, meta, error }envelope. Search, filter, and open one to see endpoints, params & live examples.
Reputation & Reviews
8 APIsE-commerce & Marketplaces
13 APIsReal Estate
5 APIsJobs & Hiring
6 APIsTravel & Lodging
5 APIsSearch & SEO
4 APIsFinance & Data
3 APIsMedia, Social & Knowledge
13 APIsUtilities & AI
7 APIsCurrency & FX
live/currency · 6 endpoints
post/currency/v1/latest1 creditlatest reference rates for a base (default EUR) → all or selected target currencies (+ unix timestamp)
basesymbols
{
"base": "EUR"
}Try in playground →post/currency/v1/convert1 creditconvert an amount from→to at the latest rate (or a given historical date); returns rate + result
from*to*amountdate
{
"from": "USD",
"to": "EUR",
"amount": 100
}Try in playground →post/currency/v1/historical1 creditreference rates on a past date (YYYY-MM-DD; weekend/holiday → last working day) since 1999-01-04
date*basesymbols
{
"date": "2020-07-01",
"base": "USD",
"symbols": "EUR,GBP"
}Try in playground →post/currency/v1/timeseries2 creditsrates over a date range (working days) for a base → selected/all targets; {date:{CUR:val}}
start*end*basesymbols
{
"start": "2024-01-02",
"end": "2024-01-05",
"base": "EUR",
"symbols": "USD"
}Try in playground →post/currency/v1/fluctuation2 creditsper-currency change over a date range: {CUR:{start_rate,end_rate,change,change_pct}} (derived from the range endpoints)
start*end*basesymbols
{
"start": "2024-01-02",
"end": "2024-01-31",
"base": "EUR",
"symbols": "USD"
}Try in playground →post/currency/v1/currencies1 creditthe current ECB reference currency set (code → name)
Try in playground →