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/14604?format=api
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "id": 14604,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/14604?format=api",
    "title": "The White Rose",
    "original_title": "The White Rose",
    "year": 1923,
    "date_published": "1923-05-21",
    "duration": 100,
    "description": "A wealthy young Southern aristocrat, Joseph, graduates from a seminary and, before he takes charge of his assigned parish, decides to go out and see what \"the real world\" is all about. He ...",
    "long_description": "A wealthy young Southern aristocrat, Joseph, graduates from a seminary and, before he takes charge of his assigned parish, decides to go out and see what \"the real world\" is all about. He winds up in New Orleans and finds himself attracted to a poor, unsophisticated orphan girl, Bessie. One thing leads to another, and before long Bessie finds that she is pregnant with Joseph's child.",
    "avg_vote": "6.4",
    "imdb_score": "6.4",
    "votes": 159,
    "metascore": null,
    "budget": 650000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 10,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTc3NTM4Mzg0Nl5BMl5BanBnXkFtZTcwMDE4Mzc4Mg@@._V1_UY268_CR43,0,182,268_AL_.jpg",
    "actors": [
        "Carol Dempster",
        "Charles Emmett Mack",
        "Erville Alderson",
        "Herbert Sutch",
        "Ivor Novello",
        "Jane Thomas",
        "Joseph Burke",
        "Kate Bruce",
        "Lucille La Verne",
        "Mae Marsh",
        "Mary Foy",
        "Neil Hamilton",
        "Porter Strong"
    ],
    "directors": [
        "D.W. Griffith"
    ],
    "writers": [
        "D.W. Griffith"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "D.W. Griffith Productions"
}