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

{
    "id": 22435,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22435?format=api",
    "title": "Volubilità",
    "original_title": "Strangers May Kiss",
    "year": 1931,
    "date_published": "1931-04-04",
    "duration": 81,
    "description": "Against her friends wishes, Lisbeth moves to Mexico to live with her lover.",
    "long_description": "Lisbeth is a modern woman who thinks that marriage is old fashioned. She has two men in her life; Steve, who wants to marry her and Alan, who wants her to travel with him. Despite all the warnings by her friends and family, Lisbeth goes to Mexico with Alan where she is happy until she finds out that he has a wife in Paris and that he is leaving for his next job without her. Devastated, she spends a few years in Europe being the life of the party. While her reputation is well known, her life of gaiety has not made her happy.",
    "avg_vote": "6.0",
    "imdb_score": "6.0",
    "votes": 416,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 16,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYjAyYmEwYTQtNmEwMC00Y2NjLTgxNTgtZDljOGZmNTZmZTliXkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Albert Conti",
        "Conchita Montenegro",
        "George Davis",
        "Hale Hamilton",
        "Henry Armetta",
        "Irene Rich",
        "Jed Prouty",
        "Marjorie Rambeau",
        "Neil Hamilton",
        "Norma Shearer",
        "Robert Livingston",
        "Robert Montgomery"
    ],
    "directors": [
        "George Fitzmaurice"
    ],
    "writers": [
        "Ursula Parrott"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French",
        "Spanish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}