Pix2DePix API
  1. API Endpoints
Pix2DePix API
  • 📜 API Overview
  • Docs
    • 🔑 Authentication
    • 💻 Examples
    • 🪝 Webhook
    • ✅ Possible Statuses
      • 📥💰 Deposit Statuses
      • 📤💸 Withdraw Statuses
    • 🛡️ Security & Limits
      • ✅ Best Practices
      • 🪲 Bug Bounty
      • 🧱 Firewall
      • 🚦 API Limits
    • 🧩 Advanced (optional)
      • 🎲 Nonce
      • 🔀 Sync / Async call
  • API Endpoints
    • Ping
      GET
    • Deposit (PIX ➔ DePix)
      POST
    • Deposit Status
      GET
    • Deposits
      GET
    • User Info
      GET
    • Pix2FA
      POST
    • Withdraw
      POST
    • Withdraw Status
      GET
  • Schemas
    • AsyncResponse
    • AllPossibleObjResponses
    • StandardResponse
    • PingObjOrError
    • JWTClaims
    • ObjResponse
    • ErrorObj
    • PingObj
    • ErrorResponse
    • DepositRequest
    • DepositObjOrError
    • DepositObj
    • PingResponse
    • DepositResponse
    • DepositStatusObj
    • DepositStatusResponse
    • DepositWebhookBody
    • DepositsResponse
    • DepositStatus
    • UserInfoResponse
    • Pix2FAResponse
    • WithdrawStatusResponse
    • WithdrawStatusObj
    • WithdrawResponse
    • WithdrawObj
    • WithdrawStatus
    • WithdrawWebhookBody
  1. API Endpoints

Withdraw Status

Testing
GET
withdraw-status
The /withdraw-status API is used to retrieve the status of a financial withdrawal in the system. It provides information about the withdrawal, such as its current state, amount, and other metadata.
See also: https://pix2depix.apidog.io/withdrawstatus-11844895d0

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://depix.eulen.app/api/withdraw-status?id=' \
--header 'X-Nonce;' \
--header 'X-Async: auto' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "response": {
        "blockchainTxID": "1c39847b6ad32fb18bfd7abbfa726412273250e08f64a5c1f432af32aed710fc",
        "depositAddress": "lq1qqd3e2etvmpecudgp59su57ltwj9v5nkd0nf3x62m47s46g4e8ldh0wj5ehf5xl2a20zcv02wqnpcchl3u3udgg5v3z4r23khr",
        "depositAmountInCents": 12470,
        "expiration": "2026-03-21T02:47:14Z",
        "id": "019c73cb619c701895f82a41dfde224d",
        "payoutAmountInCents": 12345,
        "pixKey": "27659539884",
        "status": "sent"
    },
    "async": false
}
Modified at 2026-02-20 23:15:01
Previous
Withdraw
Next
AsyncResponse
Built with