Zum Inhalt springen
GET /v1/titles/resolve

Resolve title

Findet die wahrscheinlichste IMDB-ID zu einem Titel.

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "query": "shawshank",
        "title": {
            "id": "tt0111161",
            "rank": 48,
            "type": "feature",
            "year": 1994,
            "image": {
                "url": "https://m.media-amazon.com/images/M/MV5BMDAyY2FhYjctNDc5OS00MDNlLThiMGUtY2UxYWVkNGY2ZjljXkEyXkFqcGc@._V1_.jpg",
                "width": 1200,
                "height": 1800
            },
            "title": "The Shawshank Redemption",
            "type_id": "movie",
            "name_url": null,
            "title_url": "https://www.imdb.com/title/tt0111161/",
            "cast_or_description": "Tim Robbins, Morgan Freeman"
        }
    },
    "meta": {
        "timestamp": "2026-05-04T13:59:39.688Z",
        "request_id": "cde35353-4388-4de8-8bb3-9e67f9326066"
    },
    "status": "ok",
    "message": "Title resolved successfully",
    "success": true
}