/v1/search
Universal on-chain search
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/educhain-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/educhain-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/educhain-api/v1/search");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/educhain-api/v1/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"count": 50,
"query": "USD",
"results": [
{
"name": "EDU Chain Bridged USDC",
"type": "token",
"symbol": "USDC",
"address": "0x836d275563bAb5E93Fd6Ca62a95dB7065Da94342"
},
{
"name": "EDU Chain Bridged USDT",
"type": "token",
"symbol": "USDT",
"address": "0x7277Cc818e3F3FfBb169c6Da9CC77Fc2d2a34895"
},
{
"name": "Stargate Bridged USDC",
"type": "token",
"symbol": "USDC.e",
"address": "0x12a272A581feE5577A5dFa371afEB4b2F3a8C2F8"
},
{
"name": "Tether USD",
"type": "token",
"symbol": "USDT",
"address": "0x7bA0F2cb1608207031839F427Ce4dBC8d88F33C7"
},
{
"name": "USD Coin",
"type": "token",
"symbol": "USDC",
"address": "0xC7d35f55E524763f986459A362e509c2BA278512"
},
{
"name": "Blend USDC",
"type": "token",
"symbol": "bEduUSDC",
"address": "0x7cc8157b45A927e0e313A245958441B43fed2225"
},
{
"name": "Blend USDT",
"type": "token",
"symbol": "bEduUSDT",
"address": "0xD23Fa3ab7B3b16763Ba8d1B2D4D07D1f28214BD1"
},
{
"name": "APO USD",
"type": "token",
"symbol": "USDP",
"address": "0xC6d03461944d44578151C76c401F1DAb4b2e3371"
},
{
"name": "Blend Variable Debt USDC",
"type": "token",
"symbol": "variableDebtEduUSDC",
"address": "0xbDD55e4fc446675f90D77BffBBDAa3b1F9866105"
},
{
"name": "Blend Variable Debt USDT",
"type": "token",
"symbol": "variableDebtEduUSDT",
"address": "0x9690d181F5152CEBABc3152Fa2b92dFF682FcD9d"
},
{
"name": "OpenCampus USD",
"type": "token",
"symbol": "OCUSD",
"address": "0x3C886065abf6E489071D0149b63d8EfD96906a7c"
},
{
"name": "Mock USDC",
"type": "token",
"symbol": "USDC",
"address": "0x0E376F9a367BD9148d97F4195b017E78999fB554"
},
{
"name": "Blend USDCe",
"type": "token",
"symbol": "bEduUSDCe",
"address": "0xf05A73CE43D088e1273d3e7232362539cdDDE899"
},
{
"name": "Blend Variable Debt USDCe",
"type": "token",
"symbol": "varia
…