List Pix Request Schedules with pagination
List single Pix Request Schedules filtered by optional fields. Query params: ispb, accountNumber (required), branch (required), status (optional), recurrenceId (optional - filters schedules linked to the given recurrence), senderTaxId (optional), receiverTaxId (optional), endToEndId (optional - the identifier is assigned at creation, so it matches a schedule in any state), startDate (optional), endDate (optional), page (default: 0), size (default: 50), sort (e.g. scheduledDate,desc)
- Type: stringend
To End Id max length:32End-to-end identifier filter.
- Type: stringispb
Sender account ISPB.
- Type: stringaccount
Number min length:1requiredSender account number.
- Type: stringbranchmin length:1required
Sender account branch.
- Type: string enumstatus
Status filter.
values- A
C T I V E - I
N A C T I V E - I
N _ F L I G H T - C
O M P L E T E D - R
E J E C T E D - E
X P I R E D - P
E N D I N G
- Type: string enumsource
Source filter (MANUAL or PIX_AUTOMATIC).
values- M
A N U A L - P
I X _ A U T O M A T I C
- Type: stringmandate
Id Mandate identifier filter.
- Type: stringsender
Tax Id Sender tax ID (CPF/CNPJ) filter.
- Type: stringreceiver
Tax Id Receiver tax ID (CPF/CNPJ) filter.
- Type: string Format: uuidrecurrence
Id Recurrence identifier filter.
- Type: stringstart
Date Start date filter (yyyy-MM-dd). Lower bound for the schedule date.
- Type: stringend
Date End date filter (yyyy-MM-dd). Upper bound for the schedule date.
- Type: integer Format: int32page
Page number (0-indexed).
- Type: integer Format: int32size
Page size.
- Type: array string[]sort
Sort fields (e.g. scheduledDate,desc).
- application/json
- 400
Invalid request
Erros desta resposta
Código interno HTTP Descrição Erro normativo Bacen PIX-SCH-0010400 Invalid date format. Expected format: yyyy-MM-dd —
curl 'http://localhost/api/v1/pix-schedules?accountNumber=123456789&branch=0001' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"items": [
{
"id": "c0a8012e-1234-5678-90ab-000000000001",
"status": "ACTIVE",
"createdAt": "2026-03-01T09:30:00",
"updatedAt": "2026-03-15T12:00:00",
"initiationMethod": "MANU",
"priority": "NORM",
"priorityType": "PAGAGD",
"purpose": "IPAY",
"amount": 150,
"userDescription": "Gym membership",
"sender": {
"name": "Joao da Silva",
"document": {
"type": "CPF",
"value": "12345678901"
},
"account": {
"ispb": "12345678",
"type": "CACC",
"branch": "0001",
"number": "12345678"
}
},
"receiver": {
"key": "+5511989450870",
"name": "Joao da Silva",
"document": {
"type": "CPF",
"value": "12345678901"
},
"account": {
"ispb": "12345678",
"type": "CACC",
"branch": "0001",
"number": "12345678"
}
},
"source": "MANUAL",
"scheduledDate": "2026-04-30",
"endToEndId": "E1234567820260430143000ABC12345",
"msgId": "M20260101000000001",
"settledAt": "2026-06-22T14:30:00Z",
"failureReason": "FF08",
"recurrenceId": "c0a8012e-1234-5678-90ab-000000000002",
"installment": 3,
"totalInstallments": 12,
"reconciliationId": "REC20260408001",
"totalAmount": 150
}
],
"totalItems": 1,
"page": 1,
"size": 1,
"totalPages": 1,
"hasNext": true
}