/api/v1/topics/search
Search topics
Topic-Suche per Volltext.
Pruébalo en vivo
Una llamada gratuita por sesión: sin registro ni clave API. Pasa por la puerta de entrada de oanor.
Fragmentos de código
curl "https://api.oanor.com/threads-api/api/v1/topics/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/threads-api/api/v1/topics/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/threads-api/api/v1/topics/search");
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/search",
headers={"x-oanor-key": "oanor_test_..."}
)