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

{
    "id": 22279,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22279?format=api",
    "title": "Private Lives",
    "original_title": "Private Lives",
    "year": 1931,
    "date_published": "1931-12-12",
    "duration": 84,
    "description": "Divorced couple unexpectedly meet each other during their honeymoon and rekindle their love.",
    "long_description": "Elyot and Sibyl are being married in a big church ceremony. Amanda and Victor are being married by a French Justice of the Peace. Both couples go to a hotel on the same day and are put in adjoining rooms with adjoining terraces. Things go fine until Amanda sees her former husband Elyot on the adjacent terrace. While they both pretend to be happy, both make plans to leave, but their spouses do not want to leave as it is their respective honeymoons. So the other spouses each go down to the bar. This leaves Elyot and Amanda together and they reminisce. Before long, the sparks again fly and they both decide to leave together to the Mountains of Switzerland. They love, they bicker, they fight, they stop. Then it begins over and over. Then Victor and Sibyl show up at their chalet.",
    "avg_vote": "6.8",
    "imdb_score": "6.8",
    "votes": 1070,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 32,
    "reviews_from_critics": 11,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNGY5OTg5NDYtODdmZS00ZjMxLWE0MmYtMzIxNWRhZmFkYWY2XkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "George Davis",
        "Jean Hersholt",
        "Norma Shearer",
        "Reginald Denny",
        "Robert Montgomery",
        "Una Merkel"
    ],
    "directors": [
        "Sidney Franklin"
    ],
    "writers": [
        "Hanns Kräly",
        "Noël Coward"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French",
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}