1. Withdraw
  • 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. Withdraw

Cash Out

POST
/withdrawals
Os valores estão todos em centavos e aceitamos todas as chaves PIX - CPF - CNPJ - PHONE - EMAIL - EVP
Valor mínimo R$5

Requisição

Parâmetros Header

Parâmetros Bodyapplication/json

Examples

Respostas

🟢201Created
application/json
Body

🟠400Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST '/withdrawals' \
--header 'x-api-key: sk_0ac4c38adada92f8bada111112d843gftcdc54f06ca260e15a7c9d0f4f44f679' \
--header 'Content-Type: application/json' \
--data-raw '{
    "amount": 40000,
    "pixKey": "38211277000136",
    "pixKeyType": "CNPJ", // CPF - PHONE - EMAIL - EVP
    "method": "PIX",
    "metadata": {
        "sellerExternalRef": "abc123"
    }
}'
Response Response Example
201 - Success
{
    "status": true,
    "data": {
        "id": "6b91a78f-8e2e-425c-b721-c5635001d427",
        "amount": 40000,
        "method": "PIX",
        "pixKey": "38211277000136",
        "pixKeyType": "CNPJ",
        "status": "PENDING",
        "withdrawalType": "MANUAL",
        "approvedAt": null,
        "processedAt": null,
        "createdAt": "2025-07-21T11:55:45.562Z",
        "externalRef": null,
        "end2end": null,
        "metadata": "{\"sellerExternalRef\":\"abc123\"}"
    }
}
Modificado em 2025-10-22 13:17:40
Página anterior
Find All
Próxima página
Find By Metadata
Built with