/v1/categories
Topic categories
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/futuur-api/v1/categories" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/futuur-api/v1/categories", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/futuur-api/v1/categories");
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/futuur-api/v1/categories",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"count": 20,
"source": "Futuur",
"categories": [
{
"id": 2197,
"title": "007"
},
{
"id": 3508,
"title": "2026 Election"
},
{
"id": 3612,
"title": "2026 Elections"
},
{
"id": 3611,
"title": "2028 Elections"
},
{
"id": 624,
"title": "Africa"
},
{
"id": 3042,
"title": "AI Regulation"
},
{
"id": 3658,
"title": "Album releases"
},
{
"id": 2130,
"title": "Alibaba"
},
{
"id": 2650,
"title": "Alien Life"
},
{
"id": 2131,
"title": "Alphabet"
},
{
"id": 2729,
"title": "Alzheimer's disease"
},
{
"id": 2132,
"title": "Amazon"
},
{
"id": 2133,
"title": "Apple"
},
{
"id": 122,
"title": "Approval Rates"
},
{
"id": 1123,
"title": "Argentina"
},
{
"id": 2349,
"title": "Artemis Mission"
},
{
"id": 3580,
"title": "Artificial Intelligence"
},
{
"id": 118,
"title": "Asia/Pacific"
},
{
"id": 2094,
"title": "Average Wage"
},
{
"id": 2341,
"title": "Belarus"
}
]
},
"meta": {
"timestamp": "2026-06-11T16:46:37.904Z",
"request_id": "c208ed53-4399-42e8-8346-14c022011426"
},
"status": "ok",
"message": "Categories retrieved successfully",
"success": true
}