Economia.Awesome
Brazilian currency quotes and FX pairs, key optional
AwesomeAPI's Economia service serves Brazilian-market currency and FX data via plain GET requests. The last-quote endpoint returns bid, ask, daily high/low, and percent change for a pair such as USD/BRL. Requests work without a key, though responses are briefly cached unless you register.
GET https://economia.awesomeapi.com.br/json/last/USD-BRL
{
"USDBRL": {
"code": "USD",
"codein": "BRL",
"name": "Dólar Americano/Real Brasileiro",
"high": "5.223",
"low": "5.1612",
"bid": "5.165",
"ask": "5.175",
"timestamp": "1783112897"
}
}curl "https://economia.awesomeapi.com.br/json/last/USD-BRL"const res = await fetch("https://economia.awesomeapi.com.br/json/last/USD-BRL");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://economia.awesomeapi.com.br/json/last/USD-BRL")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/json/last/USD-BRLPROBEDBrazilian currency quotes and FX pairs, key optional
/jsonJson — documented GET route.
/json/1Json details by ID (example: 1).
/json?limit=10Json — documented GET route.
/json/search?q=testSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Economia.Awesome: common questions
Is Economia.Awesome free to use?
Yes — Economia.Awesome is a free finance API. Free tier: 100,000 requests/month free after registration; keyless access allowed (cached ~1 min). Whether the free tier allows commercial use is unclear — check the provider docs.
Does Economia.Awesome need an API key?
No — Economia.Awesome needs no API key or signup. You can call it straight away; rate limits still apply (Unauthenticated sequential queries capped at 100 results; responses cached ~1 min).
Can I call Economia.Awesome from the browser?
Not directly — Economia.Awesome doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Economia.Awesome up right now?
As of our last scheduled check, Economia.Awesome is new. We re-probe it every sweep — the status badge and uptime chart above always show the latest.