Pix2DePix API
  1. API Endpoints
Pix2DePix API
  • πŸ“œ API Overview
  • Docs
    • πŸ”‘ Authentication
    • πŸ’» Examples
    • πŸͺ Webhook
    • 🧡Deposit Status String
    • πŸ›‘οΈ Security & Limits
      • βœ… Best Practices
      • 🧱 Firewall
      • πŸͺ² Bug Bounty
      • 🚦 API Limits
    • 🧩 Advanced (optional)
      • 🎲 Nonce
      • πŸ”€ Sync / Async call
  • API Endpoints
    • Ping
      GET
    • Deposit (PIX βž” DePix)
      POST
    • Deposit Status
      GET
    • Deposits
      GET
  1. API Endpoints

Deposits

Testing
GET
deposits
This API returns a list of deposits in a compact form. It may be used from time to time as a fallback in case the webhook fails.
It currently returns up to 200 rows per query.
See also: https://docs.eulen.app/deposit-status-string-1443187m0

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/deposits?start=2006-01-02&end=2006-01-02&status=' \
--header 'X-Nonce;' \
--header 'X-Async: auto'

Responses

🟒200Success
application/json
Body

Example
[
    {
        "qrId": "string",
        "status": "string",
        "bankTxId": "string"
    }
]
Modified atΒ 2025-08-28 22:08:15
Previous
Deposit Status
Built with