Ir al contenido
GET /api/v1/topics/top-result

Top topic

Bester Topic-Treffer für Query.

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

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "query": "ai",
        "result": {
            "url": "https://www.threads.net/@socialgrowth_ai/post/C-jBSy5NkUS?hl=en",
            "title": null,
            "source": "live_web_search",
            "snippet": "Clear filter",
            "username": "socialgrowth_ai",
            "post_code": "C-jBSy5NkUS"
        },
        "live_search_available": true
    },
    "meta": {
        "timestamp": "2026-05-06T22:31:45.278Z",
        "request_id": "c4384d2b-85b0-4133-ac77-f727b2f6836b"
    },
    "status": "ok",
    "message": "Topic top result retrieved successfully",
    "success": true
}