# It usually takes much longer than 5 seconds.
# Get transaction statistics for September 2025
stats <- get_pix_transaction_stats(database = "202509")
# Filter by transaction nature
p2p <- get_pix_transaction_stats(
database = "202509",
filter = "NATUREZA eq 'P2P'"
)
# Filter by region and order by value
sudeste <- get_pix_transaction_stats(
database = "202509",
filter = "PAG_REGIAO eq 'SUDESTE'",
orderby = "VALOR desc",
top = 100
)
# Multiple filters (use 'and')
filtered <- get_pix_transaction_stats(
database = "202509",
filter = "NATUREZA eq 'P2P' and PAG_REGIAO eq 'NORDESTE'"
)
Run the code above in your browser using DataLab