/api/v1/search/top-result
Top result
Bester Treffer (1-best-match) über alle Typen.
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/threads-api/api/v1/search/top-result" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/threads-api/api/v1/search/top-result", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/threads-api/api/v1/search/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/search/top-result",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"query": "meta",
"result": {
"url": "https://www.threads.com/@stockmktnewz/post/DXE0RzUicrE/meta-platforms-meta-is-expected-to-bring-in-more-advertising-revenue-than",
"title": "search operators",
"source": "live_web_search",
"snippet": "Too few matches were found",
"username": "stockmktnewz",
"post_code": "DXE0RzUicrE"
}
},
"meta": {
"timestamp": "2026-05-06T22:31:38.288Z",
"request_id": "8b4f8c06-1b45-465c-a556-d6357391b4bc"
},
"status": "ok",
"message": "Search top result retrieved successfully",
"success": true
}