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

{
    "id": 11841,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11841?format=api",
    "title": "Agonia sui ghiacci",
    "original_title": "Way Down East",
    "year": 1920,
    "date_published": "1926-05-15",
    "duration": 145,
    "description": "A naive country girl is tricked into a sham marriage by a wealthy womanizer, then must rebuild her life despite the taint of having borne a child out of wedlock.",
    "long_description": "The callous rich, portrayed by Lennox, think only of their own pleasure. Anna is but a poor country girl whom Lennox tricks into a fake wedding. She believes that it is true, but secret, while he has his way with her. When she is pregnant, he leaves her and she must have the baby, named Trust Lennox, on her own. When the baby dies she wanders until she gets a job with Squire Bartlett. David falls for her, but she rejects him due to her past and then Lennox shows up lusting for Kate. Seeing Anna, he tries to get her to leave, but she doesn't, and she tells no one about his past. When Squire Bartlett learns of her past from Martha, the town gossip, he tosses Anna out in a snow storm. But before she goes, she fingers the respected Lennox, as the father of her dead baby and the spoiler of herself.",
    "avg_vote": "7.4",
    "imdb_score": "7.4",
    "votes": 5023,
    "metascore": null,
    "budget": 700000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 51,
    "reviews_from_critics": 30,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjI5OTI3NTQ4NV5BMl5BanBnXkFtZTgwNDY3NTAwMjE@._V1_UY268_CR1,0,182,268_AL_.jpg",
    "actors": [
        "Burr McIntosh",
        "Edgar Nelson",
        "Florence Short",
        "George Neville",
        "Josephine Bernard",
        "Kate Bruce",
        "Lillian Gish",
        "Lowell Sherman",
        "Mary Hay",
        "Mrs. David Landau",
        "Mrs. Morgan Belmont",
        "Patricia Fruen",
        "Porter Strong",
        "Richard Barthelmess",
        "Vivia Ogden"
    ],
    "directors": [
        "D.W. Griffith"
    ],
    "writers": [
        "Lottie Blair Parker",
        "William A. Brady"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "D.W. Griffith Productions"
}