Integrate Once, Reuse Forever
REST endpoints with plain JSON responses — integrate in ~10 minutes from any language
A REST API built for exchanges, wallets, OTC desks, payment platforms and collection systems. 1-3 min order-to-delivery, 99.9% uptime.
Create API KeyTreat TRON Energy like a utility: place orders via API, delegate on-chain, receive webhooks. Every step is reconciled and verifiable on-chain.
REST endpoints with plain JSON responses — integrate in ~10 minutes from any language
Each key supports IP whitelisting, label naming and per-key usage stats
On-chain Energy pool is kept deep to absorb peak demand without queueing
Every order and Energy delegation returns a tx hash that you can verify on TronScan
Order state changes pushed via webhook — no polling required
Account balance supports both TRX and USDT — simple reconciliation
The curl snippet below creates a 65,000 Energy order, suited for transfers where the recipient already holds USDT.
curl -X POST https://api.eopen.io/v1/orders \
-H 'X-API-Key: <your_api_key>' \
-H 'Content-Type: application/json' \
-d '{
"receive_address": "T...recipient...",
"energy": 65000,
"duration": "1h",
"currency": "USDT"
}'import fetch from 'node-fetch';
const res = await fetch('https://api.eopen.io/v1/orders', {
method: 'POST',
headers: {
'X-API-Key': process.env.EOPEN_API_KEY!,
'Content-Type': 'application/json',
},
body: JSON.stringify({
receive_address: recipient,
energy: 65000,
duration: '1h',
currency: 'USDT',
}),
});
const order = await res.json();
console.log(order.tx_hash);Onboarding, bulk pricing, isolated pools and SLAs are all customisable. Telegram: @eopenio · [email protected]
Centralised exchanges, custodial wallets, USDT OTC desks, payment processors, collection / hot-cold wallet rebalancing systems, and any product with high-volume payouts.
Tiered pricing based on actually delegated Energy, with extra discounts at scale. Account balance supports both TRX and USDT.
Typically 1-3 minutes, with worst case ~5 minutes during chain congestion. Any timed-out order can be rolled back on request.
Yes. Enterprise customers can contact sales for dedicated rates, isolated Energy pools and an SLA.
Full API documentation: docs.eopen.io. You can also generate a test API key from the user center.