Crypto Gateway
Login to your account
Crypto Gateway
Create a new account
User Profile
Name:
Mobile:
Email:
Last Login:
Wallet Info
Funder Address:
Virtual Balance
Current Balance: $
Generate New API Key
API Key Created!
API Key:
Funder Wallet:
Top-up Wallet:
Please save this key immediately. It will not be shown again.
Update Webhook URL
Funder Wallet Balance
Withdraw from Funder Wallet
Top-up Wallet Info
Virtual Balance
यह आपका वर्चुअल बैलेंस है, जो TUSDT के मूल्य पर आधारित है। हर सफल स्वीप पर, कुल स्वीप राशि का 1% आपके इस बैलेंस से काट लिया जाएगा।
Balance: $0.00
Top-up Wallet Address: N/A
Check Top-up Deposit
अपने टॉप-अप वॉलेट में TUSDT जमा करने के बाद, इस बटन को दबाएं ताकि आपका वर्चुअल बैलेंस अपडेट हो सके।
Request Virtual Withdrawal
आप इस फ़ॉर्म के माध्यम से अपने वर्चुअल बैलेंस को निकालने के लिए एक रिक्वेस्ट सबमिट कर सकते हैं। यह रिक्वेस्ट एडमिन के पास मैनुअल विथड्रॉल के लिए जाएगी।
Domain Whitelisting
Request a New Domain
अपने डोमेन को व्हाइटलिस्ट करने के लिए रिक्वेस्ट भेजें ताकि आपका API केवल उन डोमेन्स पर काम करे।
Domain History
Whitelisted Domains
Pending Domains
API Tools & Documentation
Use the API Key you generated to interact with the gateway.
Your API Key: N/A
1. Create User Deposit Address
Endpoint: POST /users
Use this to generate a unique deposit address for a specific user ID.
2. Check User Deposit Balance
Endpoint: GET /balances/:userId
Use this to check the balance of any deposit address you created.
3. Check Funder Wallet Balance
Endpoint: GET /funder-balance
Use this to check the balance of your main funder wallet.
4. Check for New Deposit & Sweep
Endpoint: POST /check-deposit/:userId
Use this to manually check for new deposits to a user's address.
API Documentation with Code Examples
ये डॉक्यूमेंटेशन आपके डेवलपर्स के लिए है ताकि वे API को आसानी से इंटीग्रेट कर सकें। सभी रिक्वेस्ट्स के लिए API Key को `x-api-key` हेडर में भेजें।
1. Create User Deposit Address
यह एंडपॉइंट एक नए यूज़र के लिए एक यूनीक डिपाज़िट एड्रेस बनाता है।
Endpoint: POST /users
cURL
curl -X POST \
http://localhost:3000/users \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"userId": "user_id_123"
}'
Node.js (Fetch)
const apiKey = 'YOUR_API_KEY';
const userId = 'user_id_123';
async function createUserAddress() {
const response = await fetch('http://localhost:3000/users', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': apiKey
},
body: JSON.stringify({ userId })
});
const data = await response.json();
console.log(data);
}
createUserAddress();
2. Check User Deposit Balance
यह एंडपॉइंट किसी भी यूज़र के डिपाज़िट एड्रेस पर मौजूद सभी टोकन का बैलेंस चेक करता है।
Endpoint: GET /balances/:userId
cURL
curl -X GET \
http://localhost:3000/balances/user_id_123 \
-H "x-api-key: YOUR_API_KEY"
Node.js (Fetch)
const apiKey = 'YOUR_API_KEY';
const userId = 'user_id_123';
async function checkUserBalance() {
const response = await fetch(`http://localhost:3000/balances/${userId}`, {
headers: { 'x-api-key': apiKey }
});
const data = await response.json();
console.log(data.balances);
}
checkUserBalance();
3. Check Deposit and Sweep
यह एंडपॉइंट डिपाज़िट को वेरिफाई करेगा, गैस टॉप-अप करेगा, और ऑटोमैटिकली टोकन को आपके पार्टनर वॉलेट में भेज देगा।
Endpoint:
POST /check-deposit/:userId
cURL
curl -X POST \
http://localhost:3000/check-deposit/user_id_123 \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"tokenSymbol": "TUSDT"
}'
Node.js (Fetch)
const apiKey = 'YOUR_API_KEY';
const userId = 'user_id_123';
const tokenSymbol = 'TUSDT';
async function checkAndSweep() {
const response = await fetch(`http://localhost:3000/check-deposit/${userId}`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': apiKey
},
body: JSON.stringify({ tokenSymbol })
});
const data = await response.json();
console.log(data);
}
checkAndSweep();
4. Check Funder Wallet Balance
यह एंडपॉइंट आपके मुख्य फ़ंडर वॉलेट का बैलेंस बताता है।
Endpoint: GET /funder-balance
cURL
curl -X GET \
http://localhost:3000/funder-balance \
-H "x-api-key: YOUR_API_KEY"
Node.js (Fetch)
const apiKey = 'YOUR_API_KEY';
async function checkFunderBalance() {
const response = await fetch('http://localhost:3000/funder-balance', {
headers: { 'x-api-key': apiKey }
});
const data = await response.json();
console.log(data);
}
checkFunderBalance();