/v1/titles/from-url
Title from URL
Lädt Titel-Daten aus einer IMDB-Title-URL.
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/titles/from-url" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/imdb-api/v1/titles/from-url", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/imdb-api/v1/titles/from-url");
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/from-url",
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.761Z",
"request_id": "c4385eb4-b3d3-4899-b2fb-5f48d1003f50"
},
"status": "ok",
"message": "Title retrieved from URL successfully",
"success": true
}