/v1/names/from-url
Name from URL
Lädt Personen-Daten aus einer IMDB-Name-URL.
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/imdb-api/v1/names/from-url" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/imdb-api/v1/names/from-url", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/imdb-api/v1/names/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/names/from-url",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"id": "nm0000182",
"rank": 701,
"type": null,
"year": null,
"image": {
"url": "https://m.media-amazon.com/images/M/MV5BMTY0OTY3ODA3OV5BMl5BanBnXkFtZTcwMzMyMzQ1NQ@@._V1_.jpg",
"width": 1797,
"height": 2048
},
"title": "Jennifer Lopez",
"type_id": null,
"name_url": "https://www.imdb.com/name/nm0000182/",
"title_url": null,
"cast_or_description": "Producer, Hustlers (2019)"
},
"meta": {
"timestamp": "2026-05-04T13:59:40.078Z",
"request_id": "dabd691e-0388-49bb-bf73-46dd93f432f1"
},
"status": "ok",
"message": "Name retrieved from URL successfully",
"success": true
}