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

{
    "id": 16395,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16395?format=api",
    "title": "Stella Dallas",
    "original_title": "Stella Dallas",
    "year": 1925,
    "date_published": "1925-11-16",
    "duration": 110,
    "description": "Stella, a small town girl, marries socialite Stephen Dallas, a man with whom she has nothing in common. The whole thing is a failure; after the birth of their daughter, Laurel, the Dallases...",
    "long_description": "Stella, a small town girl, marries socialite Stephen Dallas, a man with whom she has nothing in common. The whole thing is a failure; after the birth of their daughter, Laurel, the Dallases separate, and Stephen returns to New York. As Laurel grows into a young woman, Stella realizes that she can?t provide for her properly and sends her to live with Stephen and his new family. Laurel later marries a pleasant upper class boy as Stella stands in the rain, watching the ceremony through a window.",
    "avg_vote": "7.2",
    "imdb_score": "7.2",
    "votes": 278,
    "metascore": null,
    "budget": 700000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 10,
    "reviews_from_critics": 7,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZGE1Y2MwYWQtYjZiOS00YjVjLTk2OTYtYjg5Mjc4MDcyNGVkL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UY268_CR1,0,182,268_AL_.jpg",
    "actors": [
        "Alice Joyce",
        "Beatrix Pryor",
        "Belle Bennett",
        "Charles Hatton",
        "Douglas Fairbanks Jr.",
        "Jack Murphy",
        "Jean Hersholt",
        "Lois Moran",
        "Maurice Murphy",
        "Newton Hall",
        "Robert W. Gillette",
        "Ronald Colman",
        "Vera Lewis",
        "Winston Miller"
    ],
    "directors": [
        "Henry King"
    ],
    "writers": [
        "Frances Marion",
        "Olive Higgins Prouty"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "The Samuel Goldwyn Company"
}