1. Transactions
  • Bem vindo
  • Webhook
    • Webhook de TRANSAÇÃO
    • Webhook de Saque
    • Create
      POST
    • Find
      GET
    • Find All
      GET
    • Delete
      DELETE
  • Transactions
    • Pix
      POST
    • BOLETO
      POST
    • CARTÃO
      POST
    • Find All
      GET
    • Find
      GET
    • Find By Metadata
      GET
  • Withdraw
    • Find All
      GET
    • Cash Out
      POST
    • Find By Metadata
      GET
    • Find
      GET
  • Balance
    • Get Balance
      GET
  • Disputes
    • Find All
      GET
    • Find
      GET
    • Seller appeal
      POST
  • Fees
    • Get seller Fees
      GET
  • Check
    GET
  1. Transactions

Pix

POST
/transactions
Valor mínimo R$5

Requisição

Parâmetros Header

Parâmetros Bodyapplication/json

Examples

Respostas

🟢201Created
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/transactions' \
--header 'x-api-key: sk_c6b0f1703772167d3ac262f4242a2d4e8ca8878bdec44ecb' \
--header 'Content-Type: application/json' \
--data-raw '{
    "amount": 500,
    "method": "PIX",
    "metadata": {
        "sellerExternalRef": "SPO_250711Fd97bD-m7ZTOMjvBHlx7i"
    },
    "customer": {
        "name": "Nome do cliente",
        "email": "cliente@email.com",
        "phone": "123456789",
        "documentType": "CPF",
        "document": "CPF do cliente"
    },
    "items": [
        {
            "title": "Deposito pix",
            "amount": 5999,
            "quantity": 1,
            "tangible": true,
            "externalRef": ""
        }
    ]
}'
Response Response Example
{
    "status": true,
    "data": {
        "id": "f1da0134-1c97-4b55-b791-1ebc657b62ef",
        "amount": 500,
        "customer": {
            "id": "514caf9c-aadf-46ec-aec4-d3ede47a5949",
            "externalRef": null,
            "name": "John Doe",
            "email": "john@example.com",
            "phone": "1234567890",
            "documentType": "CPF",
            "document": "1234567891011",
            "createdAt": "2025-06-27T14:49:28.621Z"
        },
        "items": [
            {
                "id": "691ed38d-c4bd-4ea1-9215-5d1ee14cea35",
                "title": "Wireless Mouse",
                "amount": 5999,
                "quantity": 1,
                "tangible": true,
                "externalRef": "item_abc123",
                "transactionId": "f1da0134-1c97-4b55-b791-1ebc657b62ef",
                "createdAt": "2025-06-27T19:11:01.090Z",
                "updatedAt": "2025-06-27T19:11:01.090Z"
            }
        ],
        "method": "PIX",
        "status": "PENDING",
        "boleto": null,
        "card": null,
        "pix": {
            "id": "de79cd76-6870-4174-b805-edf1a0f426f9",
            "qrcode": "00020101021226900014br.gov.bcb.pix2568qrcode.siliumpay.com.br/dynamic/5a7ce4f4-b6c2-4e06-978e-9ed161c1de855204000053039865802BR5911PAYNIX LTDA6009Sao Paulo62070503***6304C662",
            "qrcodeUrl": "00020101021226900014br.gov.bcb.pix2568qrcode.siliumpay.com.br/dynamic/5a7ce4f4-b6c2-4e06-978e-9ed161c1de855204000053039865802BR5911PAYNIX LTDA6009Sao Paulo62070503***6304C662",
            "expirationDate": "2025-06-28T03:00:00.000Z",
            "copyPaste": null,
            "createdAt": "2025-06-27T19:11:03.586Z",
            "updatedAt": "2025-06-27T19:11:03.586Z",
            "transactionId": "f1da0134-1c97-4b55-b791-1ebc657b62ef"
        },
        "description": null,
        "installments": null,
        "metadata": null,
        "paidAt": null,
        "postbackUrl": null,
        "createdAt": "2025-06-27T19:11:01.090Z"
    }
}
Modificado em 2025-11-17 12:39:06
Página anterior
Delete
Próxima página
BOLETO
Built with