v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Funds recovery

Get tracking graph [beta]

Get tracking graphs.

Retrieves the tracking graph that maps the chain of subsequent transactions originated from the dispersion of fraudulent funds.

The graph identifies people, accounts, and transactions involved in the movement of diverted funds.

You can call this endpoint if you are:

  • The funds recovery creator participant
  • Counterparty participants who received related infraction notifications
get/v1/pix/funds-recoveries/{funds_recovery_id}/tracking-graph

Path parameters

funds_recovery_idstring required

Funds recovery identifier.

Returned from the Create funds recovery endpoint.

Query parameters

useProviderstring

Search refund in provider? Default is false.

Response

OK - success

funds_recovery_idstring

Funds recovery identifier.

Returned from the Create funds recovery endpoint.

created_atstring date-time

Creation datetime. A RFC 3339 date-time value. For example - 2023-04-12T23:20:50.52Z.

Example response

{
  "funds_recovery_id": "53D0F66A-BAB0-49D7-B7DC-807B82AABD8D",
  "parameters": {
    "hop_window": "PT2H"
  },
  "persons": [
    {
      "id": "1",
      "type": "NATURAL_PERSON",
      "created_at": "2025-01-10T10:00:00Z"
    }
  ],
  "accounts": [
    {
      "id": 6912345,
      "document_number": "7777888hh",
      "postal_code": "01701000"
    }
  ],
  "transactions": [
    {
      "id": "E1234567890123456789012345678901",
      "debtor_account_id": "156704",
      "creditor_account_id": "257938",
      "amount": 1000,
      "refundable_amount": 900,
      "settlement_time": "2025-10-23T09:00:00Z"
    }
  ],
  "summary": {
    "total_transactions": 2,
    "total_amount": 1500,
    "max_hop_reached": 1
  },
  "created_at": "2020-08-13T13:49:03Z"
}