/v1/category
One sector by id or name
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}