v1

latestOpenAPI 3.1.02026-08-0629140119.9 KB
Transactions

Get Transaction

Retrieves a transaction for the account.

get/v1/transactions/{transaction_id}

Path parameters

transaction_idinteger required

Response

Transaction retrieved successfully

amount_in_centsinteger required

Transaction amount in centavos. Positive for credits, negative for debits.

category'credit' | 'debit' | 'block' required
completed_atstring date-time nullable

Transaction completion timestamp (UTC, RFC 3339). Null while pending.

counterpartystring nullable

Counterparty name, when available.

created_atstring date-time required

Transaction creation timestamp (UTC, RFC 3339).

descriptionstring required

Human-readable transaction description.

end_to_end_idstring required

End-to-End (E2E) identifier of the PIX in the Central Bank's Instant Payment System. Format: E{ISPB}{YYYYMMDD}{HHmmss}{UniqueID} (e.g.: E323070002024011012345612345678901234). Used for tracking, reconciliation, and proof of PIX transactions.

idinteger required

Transaction identifier.

status'initial' | 'pending' | 'committed' | 'voided' | 'failed' required
typestring required

Transaction type (e.g., pix_transfer, boleto_payment).

Example response

{
  "completed_at": "2026-05-28T14:30:00Z",
  "created_at": "2026-05-28T14:30:00Z",
  "details": {
    "value": {
      "due_date": "2026-06-01",
      "paid_at": "2026-05-28T14:30:00Z"
    }
  },
  "end_to_end_id": "E323070002024011012345612345678901234",
  "med": {
    "incoming_infraction": {
      "created_at": "2026-05-28T14:30:00Z",
      "deadline": "2026-05-28T14:30:00Z",
      "funds_recovery": {
        "closed_at": "2026-05-28T14:30:00Z",
        "external_created_at": "2026-05-28T14:30:00Z",
        "external_last_modified_at": "2026-05-28T14:30:00Z"
      },
      "original_transaction": {
        "created_at": "2026-05-28T14:30:00Z"
      }
    },
    "outgoing_dispute": {
      "cancellation_requested_at": "2026-05-28T14:30:00Z",
      "created_at": "2026-05-28T14:30:00Z",
      "deadline": "2026-05-28T14:30:00Z",
      "funds_recovery": {
        "closed_at": "2026-05-28T14:30:00Z",
        "external_created_at": "2026-05-28T14:30:00Z",
        "external_last_modified_at": "2026-05-28T14:30:00Z"
      },
      "original_transaction": {
        "created_at": "2026-05-28T14:30:00Z"
      }
    }
  }
}