Brazilian Chamber of Deputies Open Data
Brazil's lower-house legislative open data
The Câmara dos Deputados publishes deputies, parties, bills, votes and expenses through a versioned REST API in JSON or XML. The sample lists political parties; server responses can be slow.
GET https://dadosabertos.camara.leg.br/api/v2/partidos?itens=2
{
"dados": [
{
"id": 36898,
"sigla": "AVANTE",
"nome": "Avante",
"uri": "https://dadosabertos.camara.leg.br/api/v2/partidos/36898"
}
]
}curl "https://dadosabertos.camara.leg.br/api/v2/partidos?itens=2"const res = await fetch("https://dadosabertos.camara.leg.br/api/v2/partidos?itens=2");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://dadosabertos.camara.leg.br/api/v2/partidos?itens=2")
print(res.json())/api/v2/partidos?itens=2PROBEDBrazil's lower-house legislative open data
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
/api/search?q=testSearch by query parameters.
/api/v2/partidos?limit=5Partidos — documented GET route.
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.
Brazilian Chamber of Deputies Open Data: common questions
Is Brazilian Chamber of Deputies Open Data free to use?
Yes — Brazilian Chamber of Deputies Open Data is a free government API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Brazilian Chamber of Deputies Open Data need an API key?
No — Brazilian Chamber of Deputies Open Data needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Brazilian Chamber of Deputies Open Data from the browser?
Yes — Brazilian Chamber of Deputies Open Data 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 Brazilian Chamber of Deputies Open Data up right now?
As of our last scheduled check, Brazilian Chamber of Deputies Open Data is new. We re-probe it every sweep — the status badge and uptime chart above always show the latest.