Praqor Developer API
Praqor is payment infrastructure for USDT on TRON. It delivers deterministic address allocation, real-time block event monitoring, and signed webhook notifications.
Quick Start Integration
Follow these 3 standard steps to accept payments in your application.
Create a Payment Intent
Present the payment address to the user
The API returns a dedicated TRON wallet address with 60 minutes settlement window.
Fulfill Order on Webhook Confirmation
When on-chain transfer is confirmed, Praqor sends an authenticated HMAC webhook to your server.
Authentication
All API requests must be transmitted over HTTPS. Authentication is achieved via standard Bearer tokens in the HTTP Authorization header.
/api/v1/payments
Creates a new payment intent and reserves an HD wallet deposit address from the pool.
| Parameter | Type | Required | Description |
|---|---|---|---|
| amount | float | Required | Amount of USDT to accept (e.g. 150.00). Must be greater than 0. |
| reference | string | Required | Your internal system identifier for the order or invoice. |
Cryptographic Webhooks
Praqor signs all webhook payloads with HMAC-SHA256 to guarantee origin authenticity.