Economia.Awesome

Brazilian currency quotes and FX pairs, key optional

📈 FinanceNEWchecked 45 min ago
AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · new
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
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"
  }
}
Call itcurl · fetch · python
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

Endpoints · 5NewFULL DOCS ↗
Monitored path responding — GET /json/last/USD-BRLchecked 45 min ago
GET/json/last/USD-BRLPROBED

Brazilian currency quotes and FX pairs, key optional

GET/json

Json — documented GET route.

GET/json/1

Json details by ID (example: 1).

GET/json?limit=10

Json — documented GET route.

GET/json/search?q=test

Search by query parameters.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.