/v1/search/top-result
Top result
Top-Treffer für eine Query (1-best-match).
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/imdb-api/v1/search/top-result" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/imdb-api/v1/search/top-result", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/imdb-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/imdb-api/v1/search/top-result",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"query": "matrix",
"result": {
"id": "tt0133093",
"rank": 282,
"type": "feature",
"year": 1999,
"image": {
"url": "https://m.media-amazon.com/images/M/MV5BN2NmN2VhMTQtMDNiOS00NDlhLTliMjgtODE2ZTY0ODQyNDRhXkEyXkFqcGc@._V1_.jpg",
"width": 2100,
"height": 3156
},
"title": "The Matrix",
"type_id": "movie",
"name_url": null,
"title_url": "https://www.imdb.com/title/tt0133093/",
"cast_or_description": "Keanu Reeves, Laurence Fishburne"
}
},
"meta": {
"timestamp": "2026-05-04T13:59:39.426Z",
"request_id": "0bc92831-86e8-4456-a941-5bb4d2f8dab4"
},
"status": "ok",
"message": "Top result retrieved successfully",
"success": true
}