Vai al contenuto
GET /v1/category

One sector by id or name

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/cryptocategories-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "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
}