Zum Inhalt springen
GET /v1/search/images

Search images

Bilder-Suche.

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

Beispiel-Response

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

{
    "data": {
        "count": 7,
        "query": "matrix",
        "images": [
            {
                "id": "tt0133093",
                "image": {
                    "url": "https://m.media-amazon.com/images/M/MV5BN2NmN2VhMTQtMDNiOS00NDlhLTliMjgtODE2ZTY0ODQyNDRhXkEyXkFqcGc@._V1_.jpg",
                    "width": 2100,
                    "height": 3156
                },
                "title": "The Matrix"
            },
            {
                "id": "tt0234215",
                "image": {
                    "url": "https://m.media-amazon.com/images/M/MV5BNjAxYjkxNjktYTU0YS00NjFhLWIyMDEtMzEzMTJjMzRkMzQ1XkEyXkFqcGc@._V1_.jpg",
                    "width": 800,
                    "height": 1200
                },
                "title": "The Matrix Reloaded"
            },
            {
                "id": "tt10838180",
                "image": {
                    "url": "https://m.media-amazon.com/images/M/MV5BMDMyNDIzYzMtZTMyMy00NjUyLWI3Y2MtYzYzOGE1NzQ1MTBiXkEyXkFqcGc@._V1_.jpg",
                    "width": 2764,
                    "height": 4096
                },
                "title": "The Matrix Resurrections"
            },
            {
                "id": "tt0242653",
                "image": {
                    "url": "https://m.media-amazon.com/images/M/MV5BMmNmMTEzODQtNmExMS00OGUxLWFkNTItMTM3NzBlNDk0YWU5XkEyXkFqcGc@._V1_.jpg",
                    "width": 2200,
                    "height": 3251
                },
                "title": "The Matrix Revolutions"
            },
            {
                "id": "tt0106062",
                "image": {
                    "url": "https://m.media-amazon.com/images/M/MV5BM2JiZjU1NmQtNjg1Ni00NjA3LTk2MjMtNjYxMTgxODY0NjRhXkEyXkFqcGc@._V1_.jpg",
                    "width": 500,
                    "height": 708
                },
                "title": "Matrix"
            },
            {
                "id": "tt0365467",
                "image": {
                    "url": "https://m.media-amazon.com/images/M/MV5BOTZjYThlYjktMzI1Ny00ZTQ1LWEzYTYtMTQ2NzU5ZDc1MGIwXkEyXkFqcGc@._V1_.jpg",
                    "width": 665,
                    "height": 1000
                },
                "title": "Making 'The Matrix'"
            },
            {
                "id": "tt12355912",
                "image": {
                    "url": "https://m.media-amazon.com/images/M/MV5BYzc3M2IyNTctMGM0Mi00Yzc5LTg0M2UtYTdiNDY2NjJiNmFmXkEyXkFqcGc@._V1_.jpg",
                    "width": 541,
                    "height": 800
                },
                "title": "The Matrix: Reborn"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-05-04T13:59:39.521Z",
        "request_id": "c2503aa5-dea1-4b88-adab-9b988c0e855a"
    },
    "status": "ok",
    "message": "Image results retrieved successfully",
    "success": true
}