چکر ولت
با استفاده از این وب سرویس میتوانید وضعیت اسکم بودن یا نبودن ولت مورد نظر را دریافت کنید.
آدرس اصلی
https://open.nestapi.ir/apis-1/WalletChecker
نمونه آدرس
https://open.nestapi.ir/apis-1/WalletChecker?wallet_type=trx&wallet=TUAEpR16Th4pLbjECPVYTgvPyStNKyB54h&key=توکن_شما
پارامترها
نام پارامتر | اجباری | توضیح |
---|---|---|
key | بله | توکن شما |
wallet_type | بله | نوع ولت |
wallet | بله | ادرس ولت |
ولت های پشتیبانی شده
btc, eth, bnb, sol, trx, doge, arb, op, avax, skl, ens, hft, imx, yfi, pivx, ethw, temco, gup, storm, rcn, bsv, nmr, solve, btu, cvc, stmx, pax, sng, zrx, sc, lba, tusd, enj, serv, zec, frc, dnt, btcp, gno, dot, zcl, xpm, nmc, snx, qtum, algo, neo, mkr, swt, dcr, pts, vot, vtc, gas, xrp, usdc, game, btcz, bch, mec, qnt, ppc, xmr, glm, qrl, kmd, snt, uni, etc, spnd, exp, xrb, xsc, bnt, btt, bio, ocean, dash, rep, ant, clo, ocn, storj, btg, link, usdt, mtl, aave, wings, dgb, bvc, rlc, loom, etz, waves, hedg, ltc, hush, celo, nano, dai, gnt, cusd, salt, xem, xlm, xtz, eos, slr, zen, omg, pay, grlc, matic, xtp, vib, vet, bkx, fct, lbc, ada, mln, comp, bat, loki, mana, poly, repv2, cro, aur, unfi, flr, crv, mask, bonk, chz, ldo, axs, pyusd, sand, pyr, ape, magic, pond, inj, trb, band, blur, fet, api3, xcn, bico, ilv, ogn, super, grt
نمونه کد
برای استفاده راحتتر از این وبسرویس، نمونه کدهایی به زبانهای مختلف ارائه شده است:
- PHP
- Python
- cURL
<?php
$payloads = http_build_query([
'wallet_type' => 'trx',
'wallet' => 'TUAEpR16Th4pLbjECPVYTgvPyStNKyB54h',
'key' => 'توکن_شما'
]);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://open.nestapi.ir/apis-1/WalletChecker?" . $payloads);
curl_setopt($ch, CURLOPT_HTTPGET, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
import requests
url = "https://open.nestapi.ir/apis-1/WalletChecker"
params = {
"wallet_type": "trx",
"wallet": "TUAEpR16Th4pLbjECPVYTgvPyStNKyB54h",
"key": "توکن_شما"
}
response = requests.get(url, params=params)
print(response.json())
curl "https://open.nestapi.ir/apis-1/WalletChecker?wallet_type=trx&wallet=TUAEpR16Th4pLbjECPVYTgvPyStNKyB54h&key=your_token"
لینک های بیشتر
Nest API همیشه در کنار شماست تا تجربهای بیوقفه و کارآمد از استفاده از APIها را در اختیار شما قرار دهد.