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

{
    "id": 17619,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/17619?format=api",
    "title": "Almost Human",
    "original_title": "Almost Human",
    "year": 1927,
    "date_published": "1927-12-26",
    "duration": 60,
    "description": "John Livingston is a rich mama's-boy, who owns a blooded dog named Paul. Paul meets Maggie Mutt, and Paul, being a pedigree canine and somewhat of a cad, lures trusting Maggie to the barn ...",
    "long_description": "John Livingston is a rich mama's-boy, who owns a blooded dog named Paul. Paul meets Maggie Mutt, and Paul, being a pedigree canine and somewhat of a cad, lures trusting Maggie to the barn to have his way. He then departs for his palatial doghouse at the Livingston estate. Meanwhile Maggie is broken-hearted and also finds that she is in a \"family way\", and gives birth to a pup she names Hank. Maggie tells Hank to find his \"human \", and departs the scene. Hank goes to the park, meets a \"human\" named Mary Kelly, who is a homeless waif and sweetheart of poverty, and the two adopt each other. Later on in the park Paul comes strolling along with his 'human', John. A child falls into the lake and Paul and Hank team up to save her. This leads their \"humans\" to strike up a conversation, and the male human falls in love with the female human, and takes her home to meet his aristocratic mother and expresses his desire to marry Mary. John's mother is having none of this and objects strongly, ...",
    "avg_vote": "7.5",
    "imdb_score": "7.5",
    "votes": 337,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": null,
    "reviews_from_critics": null,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYzQ5NTU2YzEtMTQ5NC00NTYyLTk1ZGEtYWYzMzUzNDJmOGFkXkEyXkFqcGdeQXVyMDMxMjQwMw@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Claire McDowell",
        "Ethel Wales",
        "Fred Walton",
        "Hank",
        "Kenneth Thomson",
        "Majel Coleman",
        "Paul",
        "Trixie",
        "Vera Reynolds"
    ],
    "directors": [
        "Frank Urson"
    ],
    "writers": [
        "Clara Beranger",
        "Richard Harding Davis"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "DeMille Pictures Corporation"
}