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

{
    "id": 21825,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21825?format=api",
    "title": "The Easiest Way",
    "original_title": "The Easiest Way",
    "year": 1931,
    "date_published": "1931-02-07",
    "duration": 73,
    "description": "Growing up in a poor working-class family, Laura decides not to marry the boy-next-door and instead accepts wealthy, older Will Brockton's invitation to move in with him. After falling in ...",
    "long_description": "Growing up in a poor working-class family, Laura decides not to marry the boy-next-door and instead accepts wealthy, older Will Brockton's invitation to move in with him. After falling in love with young up-and-coming newsman Jack Madison she leaves Brockton to wait for Madison's return from a long assignment. She runs out of money and becomes desperate, returning again to Brockton who, upon learning of Madison's sudden arrival, tells Laura she must inform Madison of her living situation or he will.",
    "avg_vote": "6.1",
    "imdb_score": "6.1",
    "votes": 449,
    "metascore": null,
    "budget": 310000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 21,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMGNkODhjMjEtYjU5Ny00Nzk1LTlhMWMtZjUyNTMzOTdjMTU0XkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_UY268_CR10,0,182,268_AL_.jpg",
    "actors": [
        "Adolphe Menjou",
        "Anita Page",
        "Clara Blandick",
        "Clark Gable",
        "Constance Bennett",
        "J. Farrell MacDonald",
        "Marjorie Rambeau",
        "Robert Montgomery"
    ],
    "directors": [
        "Jack Conway"
    ],
    "writers": [
        "Edith Ellis",
        "Eugene Walter"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}