Vai al contenuto
GET /v1/titles/resolve

Resolve title

Findet die wahrscheinlichste IMDB-ID zu einem Titel.

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/imdb-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}