Documentação da API
  • Introdução
  • Credenciais de acesso
  • Integração com a API
    • Meio de Pagamento: Boleto
      • Criando um Boleto
      • Consultando um Boleto
      • Cancelando um Boleto
    • Meio de Pagamento: Pix
      • Criando um QRCode
      • Consultando um QRCode
      • Cancelando um QRCode
      • Estornando um QRCode
    • Consultando saldo
  • Specification
Powered by GitBook
On this page
  1. Integração com a API
  2. Meio de Pagamento: Pix

Consultando um QRCode

PreviousCriando um QRCodeNextCancelando um QRCode

Last updated 9 days ago

Get a list of QRCode

get

This endpoint return a qrcode list.

Authorizations
Header parameters
User-AgentanyOptional

Client Identifier

Responses
200
OK
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
get
GET /v1/pix HTTP/1.1
Host: sandbox-api.pagou.com.br
X-API-KEY: YOUR_API_KEY
Accept: */*
[
  {
    "amount": 1,
    "customer_code": "text",
    "description": "text",
    "expiration": 1,
    "metadata": [
      {
        "key": "text",
        "value": "text"
      }
    ],
    "notification_url": "text",
    "payer": {
      "document": "text",
      "name": "text"
    }
  }
]

Get a QRCode

get

This endpoint return a qrcode.

Authorizations
Path parameters
qrcodeIDanyRequired

QRCode ID

Header parameters
User-AgentanyOptional

Client Identifier

Responses
200
OK
application/json
Responsestring
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
500
Internal Server Error
application/json
get
GET /v1/pix/{qrcodeID} HTTP/1.1
Host: sandbox-api.pagou.com.br
X-API-KEY: YOUR_API_KEY
Accept: */*
text
  • GETGet a list of QRCode
  • GETGet a QRCode