Aller au contenu
GET /v1/search

Search addresses, tokens, blocks & txns

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/ethereum-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/ethereum-api/v1/search" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ethereum-api/v1/search", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ethereum-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/ethereum-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": "USDC",
        "results": [
            {
                "name": "USDC",
                "type": "token",
                "symbol": "USDC",
                "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
            },
            {
                "name": "Steakhouse USDC Morpho Vault",
                "type": "token",
                "symbol": "STEAKUSDC",
                "address": "0xBEEF01735c132Ada46AA9aA4c54623cAA92A64CB"
            },
            {
                "name": "Gauntlet USDC PRIME V2",
                "type": "token",
                "symbol": "GTUSDCP",
                "address": "0x8c106EEDAd96553e64287A5A6839c3Cc78afA3D0"
            },
            {
                "name": "Steakhouse USDC V2",
                "type": "token",
                "symbol": "STEAKUSDC",
                "address": "0xbeef088055857739C12CD3765F20b7679Def0f51"
            },
            {
                "name": "Wrapped Aave Ethereum USDC",
                "type": "token",
                "symbol": "WAETHUSDC",
                "address": "0xD4fa2D31b7968E448877f69A96DE69f5de8cD23E"
            },
            {
                "name": "Gauntlet USDC Prime Morpho Vault",
                "type": "token",
                "symbol": "GTUSDC",
                "address": "0xdd0f28e19C1780eb6396170735D45153D261490d"
            },
            {
                "name": "kpk USDC Prime V2 Morpho Vault (Ethereum)",
                "type": "token",
                "symbol": "KPK_USDC_V2",
                "address": "0x4Ef53d2cAa51C447fdFEEedee8F07FD1962C9ee6"
            },
            {
                "name": "USD CoinVertible",
                "type": "token",
                "symbol": "USDCV",
                "address": "0x5422374B27757da72d5265cC745ea906E0446634"
            },
            {
                "name": "Compound USDC",
                "type": "token",
                "symbol": "CUSDC",
                "address": "0x39AA39c021dfbaE8faC545936693aC917d5E7563"
            },
            {
                "name": "MEV Capital Usual Boosted USDC Morpho Vault",
                "type": "token",
                "symbol": "USUALUSDC+",
                "address": "0xd63070114470f685b75B74D60EEc7c1113d33a3D"
            },
            {
                "name": "kpk USDC Yield V2 Morpho Vault (Ethereum)",
                "type": "token",
                "symbol": "KPK_USDC_YIELDV2",
                "address": "0xD5cCe260E7a755DDf0Fb9cdF06443d593AaeaA13"
            },
            {
                "name": "kpk USDC RWA Euler Vault (Ethereum)",
                "type": "token",
                "symbol": "KPK_RWA_USDC",
                "address": "0x2B47c128b35DDDcB66Ce2FA5B33c95314a7de245"
            },
            {
                "name": "f(x) Protocol Morpho USDC",
                "type": "token",
                "symbol": "FXUSDC",
                "address": "0x4F460bb11cf958606C69A963B
…