Access the open data APIs of TransfereGov, the Brazilian federal government's platform for transfers to states, municipalities and civil society, from Python.
The package targets the public API host,
api-publica.transferegov.gestao.gov.br, which publishes three modules and
55 tables in all:
| Module | Covers | Tables |
|---|---|---|
especiais |
Special transfers, created by Constitutional Amendment 105/2019 for individual parliamentary amendments | 20 |
fundoafundo |
Fund-to-fund transfers, from federal funds directly to state, district and municipal funds | 20 |
parcerias |
Partnership management: programs, proposals, partnerships, their financial execution and bank statements | 15 |
Every table in the three published data models is reachable. Where the API
folds a child table into its parent rather than giving it an endpoint of its
own, it arrives as a column of lists — 5 of them in fundoafundo, 13 in
parcerias — and fields(nested=...) describes what is inside.
This is the Python sibling of transferegovr; the two cover the same ground with the same semantics.
ted, decentralized credit between federal bodies (termo de execução descentralizada), 13 tables. It has not been published on the public API host; it exists only on the olderapi.transferegov.gestao.gov.brservice, which the government is decommissioning on 2026-08-31. Unless TED is republished before then, it stops being available as an API at all.- The older PostgREST endpoints for special and fund-to-fund transfers on that same host, retired on the same date.
- The Discricionárias e Legais module (SICONV), which has no API: it is published as CSV archives at https://api-publica.transferegov.gestao.gov.br/downloads. The government has announced APIs for it in four stages between July 2026 and October 2027.
pip install transferegovpyA progress bar during long collections needs one extra:
pip install "transferegovpy[progress]"import transferegovpy as tg
tg.modules()
tg.tables("parcerias")
tg.fields("parcerias", "proposta")
tg.params("parcerias", "proposta")get() retrieves rows. Each filter is named after one of the endpoint's own
query parameters, and parameters combine with AND:
tg.get(
"parcerias", "proposta",
sg_uf_recebedor="PE",
situacao_proposta="Aprovada",
limit=20,
)That is the whole filtering vocabulary. These services compare for equality and
nothing else — no greater-than, no pattern match, no "is one of" — and they
publish no ordering or column-selection parameter. params() lists what each
table accepts, including the permitted values of the enumerated parameters.
These services ignore a query parameter they do not recognise and answer
200 with the whole table. Misspell situacao_proposta and you get every
proposal where the filter would have given the approved ones — a plausible
number, quietly wrong.
So every parameter name is checked against the packaged schema before a request goes out:
tg.count("parcerias", "proposta", in_situacao_proposta="Aprovada")
#> FilterError: Unknown filter(s): 'in_situacao_proposta'. The API ignores a
#> parameter it does not recognise and returns every row, so this would look
#> like a query that matched nothing in particular. Did you mean
#> 'situacao_proposta'? ...Enumerated values are checked the same way, before the round trip rather than after it.
The services return at most 200 rows per request, and these tables are not small. Ask before you fetch:
tg.count("especiais", "meta_especiais")
#> 156060limit counts rows, not pages. Anything above 200 is collected page by page,
and the total collected is checked against what the API reported:
import math
metas = tg.get("especiais", "meta_especiais", limit=math.inf)
tg.metadata(metas)["total_rows"]
tg.metadata(metas)["pages"]Columns are typed from the API's own schema rather than guessed, so a column that happens to be entirely null on one page does not change dtype on the next:
proposals = tg.get("parcerias", "proposta", limit=5)
proposals.dtypes["dt_proposta"]
#> dtype('<M8[ns]')
proposals.dtypes["id_proposta"]
#> Int64Dtype()Identifiers are a nullable 64-bit integer. This is the one deliberate
divergence from the R sibling, which returns them as double: pandas' Int64
holds the full range and a missing value, so there is nothing to trade away.
cd_parceria reaches 202500037062.
Each module reports when it was last loaded, which is the only freshness signal
these APIs give — they send no ETag, Cache-Control or Last-Modified:
tg.updated_at("parcerias")
#> datetime.datetime(2026, 8, 4, 0, 0)Responses are cached for an hour in a temporary directory, so nothing is written outside the session unless you ask for it:
tg.cache_dir("~/.cache/transferegovpy")or set TRANSFEREGOVPY_CACHE_DIR in the environment. cache_clear() empties
it.
Table names, column names, parameter names and categorical values belong to the API and are left as the government publishes them. The package's own functions and documentation are in English.