GET
/
payments
/
{paymentId}
curl --request GET \
  --url https://sandbox-api.superpagamentos.com/payments/{paymentId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "5a2245d8-2e5c-4969-ad70-b38a6a8aec0d",
    "status": "PENDING",
    "paymentMethod": "billet",
    "currency": "BRL",
    "amount": 9999,
    "postbackUrl": "https://suarota.exemple",
    "createdAt": "2025-06-12T03:36:12.977Z",
    "updatedAt": "2025-06-12T03:36:12.977Z",
    "splits": [],
    "buyerDetails": {
      "firstName": "João",
      "lastName": "Silva",
      "email": "cliente@exemplo.com",
      "document": "12345678909",
      "phone": "27999999999",
      "street": "Rua Exemplo",
      "streetNumber": 123,
      "neighborhood": "Centro",
      "complement": "Sala 1",
      "reference": "Próximo ao mercado",
      "city": "Vitória",
      "state": "ES"
    },
    "billetDetails": {
      "barcode": "23793391009000541473681000807503211100000009999",
      "digitableLine": "23793391009000541473681000807503211100000009999",
      "expirationDate": "2025-06-12T00:00:00+00:00",
      "pdfUrl": "https://boletos.pagzoop.com/4f9f57c1a9de418cba8686e9a20bd300/f56360422a3f40c5b66b37f527941f22/684a4b2df102d957a32aabbf.html",
      "interestAmount": 9999,
      "interestPercentage": "0",
      "interestStartDate": "2025-06-13",
      "interestType": "DAILY_AMOUNT",
      "lateFeeAmount": 99,
      "lateFeePercentage": "0",
      "lateFeeStartDate": "2025-06-13",
      "lateFeeType": "FIXED",
      "paymentLimitDate": "2025-06-12T00:00:00+00:00"
    }
  },
  "message": null
}

Authorizations

Authorization
string
header
required

Token JWT gerado na rota de autenticação (/auth). Deve ser enviado no formato: Bearer <token>

Response

200
application/json

Transação encontrada com sucesso

The response is of type object.