Zum Inhalt springen
GET /v1/names/resolve

Resolve name

Findet die wahrscheinlichste IMDB-ID zu einer Person.

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

Beispiel-Response

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

{
    "data": {
        "name": {
            "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)"
        },
        "query": "jlo"
    },
    "meta": {
        "timestamp": "2026-05-04T13:59:40.005Z",
        "request_id": "435138f3-8c1b-421d-b7a3-7fbeddbe5ddc"
    },
    "status": "ok",
    "message": "Name resolved successfully",
    "success": true
}