Zum Inhalt springen
GET /v1/search/names

Search names

Personen-Suche (Schauspieler, Regisseure, etc.).

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

Beispiel-Response

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

{
    "data": {
        "count": 5,
        "names": [
            {
                "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)"
            },
            {
                "id": "nm0001349",
                "rank": 738,
                "type": null,
                "year": null,
                "image": {
                    "url": "https://m.media-amazon.com/images/M/MV5BNjIyNzI0MTAyOV5BMl5BanBnXkFtZTcwMDM3MTUwNw@@._V1_.jpg",
                    "width": 2048,
                    "height": 1363
                },
                "title": "Jennifer Love Hewitt",
                "type_id": null,
                "name_url": "https://www.imdb.com/name/nm0001349/",
                "title_url": null,
                "cast_or_description": "Actress, I Know What You Did Last Summer (1997)"
            },
            {
                "id": "nm0552696",
                "rank": 33151,
                "type": null,
                "year": null,
                "image": {
                    "url": "https://m.media-amazon.com/images/M/MV5BZTg3MTQxNTYtMGM2MS00Nzg4LTk2MTYtOGQ3MjhjNmI2ZTkwXkEyXkFqcGc@._V1_.jpg",
                    "width": 2406,
                    "height": 1800
                },
                "title": "Lock Martin",
                "type_id": null,
                "name_url": "https://www.imdb.com/name/nm0552696/",
                "title_url": null,
                "cast_or_description": "Actor, The Day the Earth Stood Still (1951)"
            },
            {
                "id": "nm1510681",
                "rank": 620139,
                "type": null,
                "year": null,
                "image": null,
                "title": "Jeremy Long",
                "type_id": null,
                "name_url": "https://www.imdb.com/name/nm1510681/",
                "title_url": null,
                "cast_or_description": "Camera and Electrical Department, Divergent (2014)"
            },
            {
                "id": "nm4518946",
                "rank": 366266,
                "type": null,
                "year": null,
                "image": {
                    "url": "https://m.media-amazon.com/images/M/MV5BOTZiODM2NjAtOGJjMy00YzcxLTlkN2UtMWFkYWY3ZWFmODY5XkEyXkFqcGc@._V1_.jpg",
                    "width": 2160,
                    "height": 3240
                },
                "title": "JLouis Mills",
                "type_id": null,
                "name_url": "https://www.
…