# It usually takes much longer than 5 seconds.
# Get municipality transaction data for December 2025
muni <- get_pix_transactions_by_municipality(database = "202512")
# Filter by state
maranhao <- get_pix_transactions_by_municipality(
database = "202512",
filter = "Estado eq 'MARANHÃO'",
orderby = "Municipio desc",
top = 10
)
# Filter by region
nordeste <- get_pix_transactions_by_municipality(
database = "202512",
filter = "Sigla_Regiao eq 'NE'"
)
# Order by value
top_value <- get_pix_transactions_by_municipality(
database = "202512",
orderby = "VL_PagadorPF desc",
top = 100
)
Run the code above in your browser using DataLab