Skip to main content
POST
/
charge
/
pix
/
static
Criar QR Code PIX estático
curl --request POST \
  --url https://api.clickpay.app.br/charge/pix/static \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "amount": 1000
}'
{
  "status": 201,
  "message": "Static QR code created successfully",
  "data": {
    "correlationID": "qrs_abc123",
    "brCode": "00020126...",
    "qrCodeImage": "https://api.openpix.com.br/openpix/charge/brcode/image/xxx.png",
    "devMode": false
  }
}

Authorizations

X-API-KEY
string
header
required

Body

application/json
amount
number
required

Valor em centavos.

Example:

1000

Response

QR Code estático criado com sucesso

status
number
required
Example:

201

message
string
required
Example:

"Static QR code created successfully"

data
object
required