v1
latestOpenAPI 3.1.0MIT2026-07-2484155300.5 KBPayment Request
List
Recovers all created payment requests
get/payments/requests
Query parameters
pageSizenumber double
Page size for the paging request, default: 500
pagenumber double
Page number for the paging request, default: 1
fromstring date
Filter payment requests by start date. Returns only requests created on or after this date.
tostring date
Filter payment requests by end date. Returns only requests created on or before this date.
customerstring
Filter payment requests with one customer attribute (name, email, CPF or CNPJ)
pixKeystring
Filter payment requests by Pix Key
status'CREATED' | 'IN_PROGRESS' | 'COMPLETED' | 'SCHEDULED' | 'WAITING_PAYER_AUTHORIZATION' | 'ERROR' | 'EXPIRED' | 'AUTHORIZED' | 'CANCELED'
Filter payment requests by status
Response
Retrieve a list of all payment requests
Example response
{
"results": [
{
"id": "c2a6b7d9-3349-435d-8341-44021449ebbc",
"amount": 150.5,
"fees": 0.45,
"description": "Order #4821",
"status": "CREATED",
"clientPaymentId": "order-4821",
"createdAt": "2025-03-12T13:03:45.689Z",
"updatedAt": "2025-03-12T13:03:45.689Z",
"callbackUrls": {
"success": "https://merchant.example.com/orders/4821/success",
"error": "https://merchant.example.com/orders/4821/error"
},
"paymentUrl": "https://pay.pluggy.ai/c2a6b7d9-3349-435d-8341-44021449ebbc",
"recipient": {
"type": "BANK_ACCOUNT",
"id": "5e9f8f8f-f8f8-4f8f-8f8f-8f8f8f8f8f8f",
"name": "Conta empresa",
"taxNumber": "12345678900",
"isDefault": true,
"paymentInstitution": {
"id": "00000000-0000-0000-0000-000000000000",
"name": "Banco J. Safra S.A.",
"ispb": "03017677",
"tradeName": "Banco Safra",
"compe": "074",
"createdAt": "2020-04-21T15:00:00.000Z",
"updatedAt": "2020-04-21T15:00:00.000Z"
},
"account": {
"branch": "0001",
"number": "123456",
"type": "CHECKING_ACCOUNT"
},
"pixKey": null,
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:30:00.000Z"
},
"customer": null,
"smartAccount": null,
"pixQrCode": null,
"boleto": null,
"automaticPix": null,
"schedule": null,
"errorDetail": null,
"isSandbox": false
}
]
}