paralelo.bo
Live Bolivia parallel USD/BOB rate, refreshed every minute
Returns the current parallel-market exchange rate between US dollars and Bolivianos, aggregated from peer-to-peer sources. Each response carries buy, sell, median, and spread figures alongside an ISO timestamp. A plain-text variant at /rate.txt suits shell pipelines.
GET https://paralelo.bo/api/v1/rate
{
"timestamp": "2026-07-05T10:12:47.856Z",
"buy": 10.04,
"sell": 9.97,
"median": 10,
"spreadPct": -0.7124,
"sourceCount": 2,
"methodologyVersion": "ec2-backend"
}curl "https://paralelo.bo/api/v1/rate"const res = await fetch("https://paralelo.bo/api/v1/rate");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://paralelo.bo/api/v1/rate")
print(res.json())/ratePROBEDLive Bolivia parallel USD/BOB rate, refreshed every minute
/rate?limit=5Paginated variant with limit parameter.
/rate.txtGet current rate as plain text
/historical/{date}Get historical rate for a date
/historicalGet historical range
/historical.csvGet full historical dataset as CSV
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.
paralelo.bo: common questions
Is paralelo.bo free to use?
Yes — paralelo.bo is a free finance API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does paralelo.bo need an API key?
No — paralelo.bo needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished (60s cache stated)).
Can I call paralelo.bo from the browser?
Yes — paralelo.bo returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is paralelo.bo up right now?
As of our last scheduled check, paralelo.bo is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.