Ir al contenido
GET /v1/category

One sector by id or name

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/cryptocategories-api

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "id": "meme-token",
        "name": "Meme",
        "content": "Meme coins derive their relevance from memes, thriving on hype and picking up momentum as the community grows.",
        "top_coins": [
            "dogecoin",
            "memecore",
            "shiba-inu"
        ],
        "market_cap": 30787956755,
        "updated_at": "2026-06-09T11:35:27.235Z",
        "volume_24h": 2404963127,
        "market_cap_rank": 20,
        "market_cap_change_24h_pct": -1.78
    },
    "meta": {
        "timestamp": "2026-06-09T11:39:58.318Z",
        "request_id": "f450d095-49ac-46ee-85bd-2f710ba07c52"
    },
    "status": "ok",
    "message": "Category retrieved successfully",
    "success": true
}