Skip to main content
GET
/
v2
/
transactions
List Transactions
curl --request GET \
  --url https://api.pagou.ai/v2/transactions \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "requestId": "<string>",
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "buyer": {
        "name": "<string>",
        "email": "jsmith@example.com"
      },
      "payment": {
        "method": "pix",
        "currency": "BRL",
        "country": "<string>",
        "amount": 0,
        "base_price": 0,
        "external_ref": "<string>",
        "installments": 6,
        "fee": {
          "estimated_fee": 0,
          "net_amount": 0
        },
        "pix": {
          "qrcode": "<string>",
          "endToEnd": "<string>"
        }
      },
      "products": [
        {
          "title": "<string>",
          "quantity": 0,
          "unit_price": 0
        }
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "attempts_count": 1,
      "paid_at": "2023-11-07T05:31:56Z"
    }
  ],
  "next_cursor": "<string>",
  "prev_cursor": "<string>",
  "total": 123
}

Documentation Index

Fetch the complete documentation index at: https://developer.pagou.ai/llms.txt

Use this file to discover all available pages before exploring further.

For voucher reconciliation, filter by paymentMethods=voucher. Voucher covers Boleto, SPEI/bank transfer, Mercado Pago or other local voucher options, Webpay, CODI, PSE, and similar payment-provider-supported instructions under the same public method. Use status=pending to find open voucher instructions and status=paid to reconcile confirmed payments.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

cursor
string
limit
number
default:20
Required range: 1 <= x <= 100
direction
enum<string>
default:next
Available options:
next,
prev
id
string | null
paymentMethods
enum<string> | null
default:pix
Available options:
pix,
voucher,
credit_card
currency
enum<string> | null
default:BRL
Available options:
ARS,
BOB,
BRL,
CLP,
COP,
CRC,
GTQ,
MXN,
PYG,
PEN,
USD,
UYU
status
deliveryStatus
enum<string> | null
Available options:
waiting,
in_transit,
delivered
installments
number | null
name
string | null
email
string | null
documentNumber
string | null
phone
string | null
traceable
boolean | null
dateFrom
string<date-time> | null
Pattern: ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z|([+-](?:[01]\d|2[0-3]):[0-5]\d)))$
dateTo
string<date-time> | null
Pattern: ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z|([+-](?:[01]\d|2[0-3]):[0-5]\d)))$

Response

Success

success
boolean
required
requestId
string
required
data
object[]
required
next_cursor
string | null
required
prev_cursor
string | null
required
total
number
required