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
  • e2eid
    Type: string Pattern: [a-zA-Z0-9]{32}
    required

    EndToEndId do Pix recebido

Headers
  • x-branch
    Type: string
    required

    Branch of the receiving account

  • x-account-number
    Type: string
    required

    Number 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"
    }
  ]
}