Naar de inhoud
GET /v1/names/detail

Name detail

Detail-Daten zu einer Person per IMDB-ID (nm…).

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/imdb-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "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:39.900Z",
        "request_id": "fdcd7388-818f-4e55-9e4c-9eee1e597908"
    },
    "status": "ok",
    "message": "Name detail retrieved successfully",
    "success": true
}