This endpoint gives access to detailed movie information from the OCMovies API.

The OCMovies API is a RESTful API built using Django Rest Framework with the objective to support educational projects through a local execution of the server. It uses data from more than 80k movies from de IMDb website.

Not all the detailed data is present in the title list endpoint available here. Only the detailed information provided on the current endpoint gives access to e.g. the description, long description or buget and income info about the movie.

If you need to get a full list of available genres, refer to the genres endpoint.

Please, refer to the title list endpoint to get various search or sort capabilities, thereby allowing to efficiently identify the movies you want to look at.

GET /api/v1/titles/8309?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 8309,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/8309?format=api",
    "title": "A Modern Musketeer",
    "original_title": "A Modern Musketeer",
    "year": 1917,
    "date_published": "1917-12-30",
    "duration": 68,
    "description": "A restless young man travels west, encountering adventure, romance, and danger.",
    "long_description": "Ned Thacker, through prenatal suggestion, is born in Kansas with the spirit of D'Artagnan, of Gascony, and, naturally, his gallantries are very much misunderstood by maids and matrons of today, but when he falls in love with Dorothy Morane it takes something more than a millionaire rival to head him off, and it takes even more than a half-crazed Indian guide and the face of the Grand Canyon to keep him from the lady of his choice; not even her mother can do that.",
    "avg_vote": "6.7",
    "imdb_score": "6.7",
    "votes": 257,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 11,
    "reviews_from_critics": 7,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTBmNGUyODQtZTU1NC00YTE5LWJiZDMtZDI0ZmNlYzA3MGE0XkEyXkFqcGdeQXVyNjA5MTAzODY@._V1_UY268_CR1,0,182,268_AL_.jpg",
    "actors": [
        "Douglas Fairbanks",
        "Edythe Chapman",
        "Eugene Ormonde",
        "Frank Campeau",
        "Kathleen Kirkham",
        "Marjorie Daw",
        "Tully Marshall"
    ],
    "directors": [
        "Allan Dwan"
    ],
    "writers": [
        "Allan Dwan",
        "E.P. Lyle Jr."
    ],
    "genres": [
        "Adventure",
        "Comedy",
        "Western"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Douglas Fairbanks Pictures"
}