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

{
    "id": 13372,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/13372?format=api",
    "title": "Manslaughter",
    "original_title": "Manslaughter",
    "year": 1922,
    "date_published": "1922-09-24",
    "duration": 100,
    "description": "Society-girl thrill seeker Lydia causes the death of motorcycle policeman and is prosecuted by her fiancé Daniel who describes in lurid detail the downfall of Rome. While she's in prison she reforms and Daniel becomes a wasted alcoholic.",
    "long_description": "Lydia Thorne, a wealthy girl who loves speed and thrills, is unsympathetic when Evans, her maid, is jailed for stealing her jewels. District Attorney Daniel O'Bannon visits Lydia to make her see the error of her own ways, but instead views a scene of Lydia and her friends that reminds him of a Roman orgy. O'Bannon feels it is his duty, therefore, to send Lydia to jail for her own good when her automobile driving causes the death of a motorcycle policeman. Lydia is resentful, and her rebuff of O'Bannon, who has come to love her, causes him such remorse that he turns to drink and dissipation. Meanwhile, Lydia reforms, realizes she loves O'Bannon, and resolves to do charitable work. She and Evans open a soup kitchen after their release, and a chance meeting with O'Bannon starts him on the road to recovery. With Lydia's encouragement he becomes himself again, runs for governor, but withdraws his candidacy to marry Lydia when he sees that her record would be a liability to him in politics.",
    "avg_vote": "6.2",
    "imdb_score": "6.2",
    "votes": 417,
    "metascore": null,
    "budget": 385000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 11,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTMzMmZkODYtMzBhYi00MTAwLTkzMjUtZDAwZmNjNDRmM2FiXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Casson Ferguson",
        "Dorothy Cumming",
        "Edythe Chapman",
        "George Fawcett",
        "Jack Mower",
        "James Neill",
        "John Miltern",
        "Julia Faye",
        "Leatrice Joy",
        "Lois Wilson",
        "Mabel Van Buren",
        "Michael D. Moore",
        "Raymond Hatton",
        "Sylvia Ashton",
        "Thomas Meighan"
    ],
    "directors": [
        "Cecil B. DeMille"
    ],
    "writers": [
        "Alice Duer Miller",
        "Jeanie Macpherson"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}