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
    • User Info
      GET
    • Pix2FA
      POST
  • Schemas
    • AsyncResponse
    • AllPossibleObjResponses
    • StandardResponse
    • PingObjOrError
    • JWTClaims
    • ObjResponse
    • ErrorObj
    • PingObj
    • ErrorResponse
    • DepositRequest
    • DepositObjOrError
    • DepositObj
    • PingResponse
    • DepositResponse
    • DepositStatusObj
    • DepositStatusResponse
    • DepositWebhookBody
    • DepositsResponse
    • DepositStatus
    • UserInfoResponse
    • Pix2FAResponse
  1. API Endpoints

User Info

Testing
GET
/user-info
This endpoint allows for checking the limits for a specific user by EUID.

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//user-info?euid=EU123456789012345' \
--header 'X-Nonce;' \
--header 'X-Async: auto' \
--header 'Authorization: Bearer <token>'

Responses

🟒200Success
application/json
Body

Example
{
    "dailyVolumeInCents": 2000,
    "maxDailyInCents": 50000,
    "isBlocked": false,
    "dailyLimitResetTime": "2025-09-21T00:00:00-03:00"
}
Modified atΒ 2025-09-20 05:49:17
Previous
Deposits
Next
Pix2FA
Built with