v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBAnti-fraud
Get PIX client statistics
Retrieve client account aggregated PIX statistics from BACEN DICT.
Statistics include:
- SPI settlements: count of settlements over the last 90 days, 12 months, and 60 months
- Fraud markers: categorized fraud report counts (application frauds, mule accounts, scammer accounts, etc.)
- Infraction reports: open reports, distinct reporters, and rejected reports counts
- Entries: number of registered accounts linked to the client
Statistics are pre-computed and cached. Use force_update=true to trigger a fresh computation from BACEN DICT.
get/v2/pix/statistics
Query parameters
force_updateboolean
Force a fresh computation of BACEN DICT statistics instead of returning cached results? Default is false.
Headers
Authorizationstring required
Example:Bearer eyJhbGci...IUzUx
Account token - an access token encoded with a Pismo account ID. Tokens can expire quickly, which can result in a <b>401 Unauthorized</b> message.
Response
OK
Example response
{
"person_statistics": {
"entries": {
"watermark": "2020-01-17T10:00:00Z"
},
"fraud_markers": {
"application_frauds": {
"d90": 86,
"m12": 23,
"m60": 12
},
"distinct_fraud_reporters": {
"d90": 86,
"m12": 23,
"m60": 12
},
"mule_accounts": {
"d90": 86,
"m12": 23,
"m60": 12
},
"other_frauds": {
"d90": 86,
"m12": 23,
"m60": 12
},
"scammer_accounts": {
"d90": 86,
"m12": 23,
"m60": 12
},
"total_fraud_transaction_amount": {
"d90": 86,
"m12": 23,
"m60": 12
},
"unknown_frauds": {
"d90": 86,
"m12": 23,
"m60": 12
},
"watermark": "2020-01-17T10:00:00Z"
},
"infraction_reports": {
"open_reports": 45,
"open_reports_distinct_reporters": 34,
"rejected_reports": {
"d90": 86,
"m12": 23,
"m60": 12
},
"watermark": "2020-01-17T10:00:00Z"
},
"spi": {
"settlements": {
"d90": 86,
"m12": 23,
"m60": 12
},
"watermark": "2020-01-17T10:00:00Z"
}
}
}