Ir al contenido
GET /v1/categories

Topic categories

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

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

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