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

{
    "id": 20442,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20442?format=api",
    "title": "Io... e l'amore",
    "original_title": "Spite Marriage",
    "year": 1929,
    "date_published": "1972-01-05",
    "duration": 76,
    "description": "An unimpressive but well intending man is given the chance to marry a popular actress, of whom he has been a hopeless fan. But what he doesn't realize is that he is being used to make the actress' old flame jealous.",
    "long_description": "Elmer is a dry cleaner. He is madly in love with stage star Trilby Drew; for each of her 35 performances, he dons someone else's tuxedo and races to the theatre. When Trilby's co-star boyfriend gets engaged to a socialite, she marries Elmer to get even, assuming Elmer is a millionaire (since his clothes are so snazzy.) But she's clearly still in love with her scoundrelous co-star, and her manager makes her leave Elmer, trying to pay him off so the papers don't hear about her marriage to a \"cheap pants presser.\" Can Elmer win her love? Maybe a sea voyage will help.",
    "avg_vote": "7.0",
    "imdb_score": "7.0",
    "votes": 1864,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 30,
    "reviews_from_critics": 18,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNTI5MDUwOTUwMl5BMl5BanBnXkFtZTgwMDA2ODU2MzE@._V1_UY268_CR2,0,182,268_AL_.jpg",
    "actors": [
        "Buster Keaton",
        "Dorothy Sebastian",
        "Edward Earle",
        "Jack Byron",
        "Leila Hyams",
        "William Bechtel"
    ],
    "directors": [
        "Buster Keaton",
        "Edward Sedgwick"
    ],
    "writers": [
        "Ernest Pagano",
        "Lew Lipton"
    ],
    "genres": [
        "Comedy"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}