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

{
    "id": 16309,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16309?format=api",
    "title": "Sally, Irene and Mary",
    "original_title": "Sally, Irene and Mary",
    "year": 1925,
    "date_published": "1925-12-27",
    "duration": 58,
    "description": "The three are showgirls, each with a different approach to life and love. Sally wants wealth and gets it finally in Marcus. Mary plots and schemes but winds up with salt-of-the-earth Jimmy....",
    "long_description": "The three are showgirls, each with a different approach to life and love. Sally wants wealth and gets it finally in Marcus. Mary plots and schemes but winds up with salt-of-the-earth Jimmy. Irene shuns devoted Charles for dashing cad Glen. She learns that all he wants is sex; he throws her out in tears. She returns to Charles, ready to marry, but both are killed by a train.",
    "avg_vote": "3.8",
    "imdb_score": "3.9",
    "votes": 135,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 3,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYzhkMjYyNzktZDkyMi00MzZlLWIyYTQtYzQyYTAwMmViNzgyXkEyXkFqcGdeQXVyNDY1NzU5NjY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Aggie Herring",
        "Constance Bennett",
        "Douglas Gilmore",
        "Edna Mae Cooper",
        "Henry Kolker",
        "Joan Crawford",
        "Kate Price",
        "Lillian Elliott",
        "Ray Howard",
        "Sally O'Neil",
        "Sam De Grasse",
        "William Haines"
    ],
    "directors": [
        "Edmund Goulding"
    ],
    "writers": [
        "Eddie Dowling",
        "Edmund Goulding"
    ],
    "genres": [
        "Comedy",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}