Authorizations
JWT Bearer token authentication. Obtain token from /v1/login/oauth/access_token
endpoint
using client credentials (clientId and clientSecret).
Include token in Authorization header:
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
Token expires after 3600 seconds (1 hour).
Query Parameters
Filter transactions by specific account UUID.
Filter by unique end-to-end transaction identifier (E2E ID).
Filter by transaction type. Use numeric value: 1=PIX.
1
1
Filter by transaction status. Possible values: PENDING, PENDING_CONFIRM, EXECUTED, REVERSAL, REPROVED, SCHEDULE, CANCELLED, ERROR.
PENDING
, PENDING_CONFIRM
, EXECUTED
, REVERSAL
, REPROVED
, SCHEDULE
, CANCELLED
, ERROR
"EXECUTED"
Filter refund transactions.
Filter internal transactions.
Filter by creation date.
Filter by update date.
Response
List of transactions retrieved successfully
Unique transaction identifier.
"txn_123456789"
Account identifier associated with the transaction.
"acc_123"
End-to-end transaction identifier.
"E1234567820230615123456789012345"
Transaction processing status. String values indicating the current state of a Pix transaction.
Valid values:
PENDING
= Transaction has been initiated and is awaiting processing by the payment systemPENDING_CONFIRM
= Transaction is awaiting final confirmationEXECUTED
= Transaction successfully completed and funds transferredREVERSAL
= Transaction was reversed (refunded)REPROVED
= Transaction was rejected or failed validationSCHEDULE
= Transaction is scheduled for future executionCANCELLED
= Transaction was cancelled by the user before executionERROR
= A processing error occurred during transaction execution
PENDING
, PENDING_CONFIRM
, EXECUTED
, REVERSAL
, REPROVED
, SCHEDULE
, CANCELLED
, ERROR
"EXECUTED"
Transaction amount.
100.5
Transaction description.
"Payment"
Transaction flow direction. Numeric code indicating whether money is coming in, going out, or being transferred internally.
Valid values:
1
= CASH_IN (Receiving payment - money coming into the account)2
= CASH_OUT (Sending payment - money going out of the account)3
= INTRA_PSP (Internal transfer within the same Payment Service Provider)
1
, 2
, 3
1
Transaction type identifier. Numeric code specifying the type of payment transaction.
Valid values:
1
= PIX (Instant payment via Brazilian Pix system)
1
1
Transaction creation timestamp.
"2023-06-15T10:30:00Z"
Transaction last update timestamp.
"2023-06-15T10:30:05Z"