cURL
curl --request POST \ --url https://api.example.com/api/v1/order/create/pix \ --header 'Content-Type: application/json' \ --data ' { "value": 123, "orderRequest": "<string>", "merchant": "<string>", "orderId": "<string>", "name": "<string>", "cnpj": "<string>", "cpf": "<string>" } '
{ "message": "<string>", "pixOrder": { "provider": "<string>", "hash": "<string>", "merchant": "<string>", "value": 123, "status": "<string>", "currency": "<string>", "universalUrl": "<string>", "removedAt": "<string>", "_id": "<string>", "paymentLinkId": "<string>", "splits": [ {} ], "createdAt": "<string>", "updatedAt": "<string>", "__v": 123 }, "qrCode": "<string>" }
Crie uma nova ordem de pagamento PIX
curl -X POST "https://server.cryptouse.com.br/api/v1/order/create/pix" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer seu_token_aqui" \ -d '{ "orderRequest": "order-1753899073445", "merchant": "merch_456", "value": 200.00, "orderId": "ord_custom_789", "name": "Empresa Exemplo Ltda", "cnpj": "12345678901234" }'
Show Propriedades
PENDING
COMPLETED
CANCELLED
FAILED
REFUND
{ "message": "order pix created", "pixOrder": { "provider": "MTBANK", "hash": "order-1753899073445", "merchant": "6884d2b4f4ea864855d89fce", "value": 200, "status": "PENDING", "currency": "BRL", "universalUrl": "00020101021226910014br.gov.bcb.pix2569qrcode.mtbank.com.br/spi/qr-code/cob/58ea8c4c14d644c2a95f4a4c2be706425204000053E", "removedAt": null, "_id": "688a68439b11ce1a1a85e450", "paymentLinkId": "d3d7bafe-2040-4f74-bddb-34823c6edcae", "splits": [], "createdAt": "2025-07-30T18:11:15.151Z", "updatedAt": "2025-07-30T18:11:15.151Z", "__v": 0 }, "qrCode": "00020101021226910014br.gov.bcb.pix2569qrcode.mtbank.com.br/spi/qr-code/cob/50ea8c4c14d644c2a95f4a4c2be706425204000053039865882BF" }