Zum Inhalt springen
GET /v1/titles/detail

Title detail

Detail-Daten zu einem Titel per IMDB-ID (tt…).

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

Beispiel-Response

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

{
    "data": {
        "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.594Z",
        "request_id": "f5132c1c-23ac-4f47-a1b1-2087d53326c2"
    },
    "status": "ok",
    "message": "Title detail retrieved successfully",
    "success": true
}