Ir al contenido
GET /v1/search

Universal search

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/numbers-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/numbers-api/v1/search" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/numbers-api/v1/search", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/numbers-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/numbers-api/v1/search",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "count": 5,
        "query": "numbers",
        "results": [
            {
                "name": "Numbers Native Token",
                "type": "token",
                "symbol": "NNT",
                "address": "0xC455B83C4F71Fd6c44Ba1eDDC9Eb1DaF31869400"
            },
            {
                "name": "Numbers Native Token",
                "type": "token",
                "symbol": "NNT",
                "address": "0x395c2EAa45865870d735074093720819359B6d0a"
            },
            {
                "name": "Numbers Native Token",
                "type": "token",
                "symbol": "NNT",
                "address": "0xcE145F7451060Ed1ec49c522c75Cd24D0044c1e6"
            },
            {
                "name": "Numbers Native Token",
                "type": "token",
                "symbol": "NNT",
                "address": "0x442bE00c47C7B1d3A972D179dc696DEd006862b8"
            },
            {
                "name": "Numbers Native Token",
                "type": "token",
                "symbol": "NNT",
                "address": "0xB4d72f0FCCd3Db4dD79b1AdA71Cf2ECd4D11E8cd"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-08T18:25:52.252Z",
        "request_id": "c9b3246c-8938-4587-bf92-245900b9bf06"
    },
    "status": "ok",
    "message": "Search results retrieved successfully",
    "success": true
}