Retrieve P2P Batch details

Returns a paginated list of P2P batches

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Retrieves all P2P batches.
Each batch represents a bulk P2P transfer request previously created via POST /transactions/p2p/batch/{bank_account_uuid}.

Query parameters

ParamTypeDefaultDescription
limitinteger1000Records per page. Max 10000.
pageinteger1Page number (1-based).
initial_datestringYYYY-MM-DD or YYYY-MM-DD HH:MM:SS. Filter by created_at.
final_datestringSame format as initial_date.
searchstringFree-text search (LIKE) over batch description and code.
code_statusintegerFilter by transaction status code. See table below.
bank_account_uuidUUIDRestrict to batches whose items belong to the given origin account.

Status codes

CodeStatus
1IN_PROCESS
2APPROVED
3CANCELED
4EXPIRED
5UNDER_REVIEW
6PENDING

Success response — 200 OK

{
  "return": true,
  "message": "success",
  "page": 1,
  "total_pages": 3,
  "registries": 25,
  "total_registries": 67,
  "data": [
    {
      "code": "5b1f8c2e-9a7d-4c3b-aef5-2d6e1f3a9b40",
      "batch_size": 100,
      "qty_successes": 98,
      "qty_errors": 2,
      "total_amount": 9850.00,
      "description": "folha-de-pagamento mai/26",
      "transaction_status": "APPROVED",
      "code_transaction_status": 2,
      "created_at": "2026-05-20 14:32:11"
    }
  ]
}

Error responses

StatusmessageWhen
400batch not foundNo batches match the filters.
400statement query with limit below \1` or over `10000` registries per page is not allowed`limit > 10000.
406bank account not foundbank_account_uuid does not belong to the company.
401Missing/invalid Bearer token.
Path Params
string
required

The code returned when the batch was created

Responses

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json