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

{
    "id": 17350,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/17350?format=api",
    "title": "La lettera rossa",
    "original_title": "The Scarlet Letter",
    "year": 1926,
    "date_published": "1927-01-08",
    "duration": 115,
    "description": "After having a child out of wedlock, a young Puritan woman is pressured to reveal the name of her lover.",
    "long_description": "In Puritan Boston, seamstress Hester Prynne is punished for playing on the Sabbath day; but kindly minister Arthur Dimmesdale takes pity on her. The two fall in love, but their relationship cannot be: Hester is already married to Roger Prynne, a physician who has been missing seven years. Dimmesdale has to go away to England; when he returns, he finds Hester pregnant with their child, and the focus of the town's censure. In a humiliating public ceremony, she is forced to don the scarlet letter A - for adultery - and wear it the rest of her life. Dimmesdale is encouraged by the church fathers to demand of Hester the person with whom she sinned.",
    "avg_vote": "7.7",
    "imdb_score": "7.6",
    "votes": 1556,
    "metascore": null,
    "budget": 430290,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 29,
    "reviews_from_critics": 13,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYThlNDM2MjAtZGY5Yy00MjdlLTgyMzUtYjQyYWIxNDgwNzBkXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UY268_CR25,0,182,268_AL_.jpg",
    "actors": [
        "Fred Herzog",
        "Henry B. Walthall",
        "James A. Marcus",
        "Joyce Coad",
        "Jules Cowles",
        "Karl Dane",
        "Lars Hanson",
        "Lillian Gish",
        "Marcelle Corday",
        "Mary Hawes",
        "William H. Tooker"
    ],
    "directors": [
        "Victor Sjöström"
    ],
    "writers": [
        "Frances Marion",
        "Nathaniel Hawthorne"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}