Zum Inhalt springen
GET /api/v1/search/top-result

Top result

Bester Treffer (1-best-match) über alle Typen.

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/threads-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}