Aller au contenu
GET /v1/search/titles

Search titles

Titel-Suche (Filme, Serien, Episoden).

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/imdb-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "count": 8,
        "query": "matrix",
        "titles": [
            {
                "id": "tt0133093",
                "rank": 282,
                "type": "feature",
                "year": 1999,
                "image": {
                    "url": "https://m.media-amazon.com/images/M/MV5BN2NmN2VhMTQtMDNiOS00NDlhLTliMjgtODE2ZTY0ODQyNDRhXkEyXkFqcGc@._V1_.jpg",
                    "width": 2100,
                    "height": 3156
                },
                "title": "The Matrix",
                "type_id": "movie",
                "name_url": null,
                "title_url": "https://www.imdb.com/title/tt0133093/",
                "cast_or_description": "Keanu Reeves, Laurence Fishburne"
            },
            {
                "id": "tt0234215",
                "rank": 1966,
                "type": "feature",
                "year": 2003,
                "image": {
                    "url": "https://m.media-amazon.com/images/M/MV5BNjAxYjkxNjktYTU0YS00NjFhLWIyMDEtMzEzMTJjMzRkMzQ1XkEyXkFqcGc@._V1_.jpg",
                    "width": 800,
                    "height": 1200
                },
                "title": "The Matrix Reloaded",
                "type_id": "movie",
                "name_url": null,
                "title_url": "https://www.imdb.com/title/tt0234215/",
                "cast_or_description": "Keanu Reeves, Laurence Fishburne"
            },
            {
                "id": "tt10838180",
                "rank": 2116,
                "type": "feature",
                "year": 2021,
                "image": {
                    "url": "https://m.media-amazon.com/images/M/MV5BMDMyNDIzYzMtZTMyMy00NjUyLWI3Y2MtYzYzOGE1NzQ1MTBiXkEyXkFqcGc@._V1_.jpg",
                    "width": 2764,
                    "height": 4096
                },
                "title": "The Matrix Resurrections",
                "type_id": "movie",
                "name_url": null,
                "title_url": "https://www.imdb.com/title/tt10838180/",
                "cast_or_description": "Keanu Reeves, Carrie-Anne Moss"
            },
            {
                "id": "tt0242653",
                "rank": 3200,
                "type": "feature",
                "year": 2003,
                "image": {
                    "url": "https://m.media-amazon.com/images/M/MV5BMmNmMTEzODQtNmExMS00OGUxLWFkNTItMTM3NzBlNDk0YWU5XkEyXkFqcGc@._V1_.jpg",
                    "width": 2200,
                    "height": 3251
                },
                "title": "The Matrix Revolutions",
                "type_id": "movie",
                "name_url": null,
                "title_url": "https://www.imdb.com/title/tt0242653/",
                "cast_or_description": "Keanu Reeves, Laurence Fishburne"
            },
            {
                "id": "tt31998838",
                "rank": 10973,
                "type": "feature",
                "year": null,
                "image": null,
                "title": "Matrix 5"
…