Consult received Pix by endToEndId (Bacen GET /pix/{e2eid})
Returns the received Pix identified by e2eid, including its devolutions. Scoped to the account given by the x-branch/x-account-number headers — a Pix of another account is reported as not found.
Path Parameters
- Type: stringe2eid
Pattern: [a-zA-Z0-9]{32}requiredEndToEndId do Pix recebido
Headers
- Type: stringx
-branch requiredBranch of the receiving account
- Type: stringx
-account -number requiredNumber of the receiving account
Responses
- application/json
- application/json
- application/json
Request Example for get/pix/{e2eid}
curl http://localhost/pix/E1234567820260713123456789012345 \
--header 'x-branch: ' \
--header 'x-account-number: ' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"endToEndId": "E1234567820260713123456789012345",
"txid": "string",
"valor": "100.0",
"componentesValor": {
"original": {
"valor": "100.0"
}
},
"chave": "string",
"horario": "2026-07-31T12:59:10.303Z",
"infoPagador": "string",
"devolucoes": [
{
"id": "devolucao-001",
"rtrId": "D1234567820260713123456789012345",
"valor": "10.0",
"natureza": "ORIGINAL",
"descricao": "string",
"horario": {
"solicitacao": "2026-07-31T12:59:10.303Z",
"liquidacao": "2026-07-31T12:59:10.303Z"
},
"status": "EM_PROCESSAMENTO",
"motivo": "string"
}
]
}