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

{
    "id": 14497,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/14497?format=api",
    "title": "Souls for Sale",
    "original_title": "Souls for Sale",
    "year": 1923,
    "date_published": "1923-04-22",
    "duration": 90,
    "description": "A young woman hits Hollywood, determined to become a star.",
    "long_description": "On board a train en route to Los Angeles, runaway bride Remember Steddon, believing now that she married in haste, abandons her husband, Owen Scudder, not knowing at the time that Scudder had previously married and murdered solely for money. Unprepared to be on her own, Mem, as she is known to her friends, accidentally stumbles across the outdoor set of a Hollywood movie directed by Frank Claymore. Mem is welcomed onto the set by the cast and crew. But as the shooting moves on, Mem decides to pursue other avenues, as she had been taught by her conservative parents that movie acting was a disreputable occupation. But needing work, Mem decides to try her hand at being an actress. This task is easier said than done, until she runs across Claymore again, he who is determined to make her a star. As her movie stardom does indeed rise, so does the admiration of adoration of legions, including her director Claymore, and her leading man Tom Holby. A further consequence of her stardom is that ...",
    "avg_vote": "7.0",
    "imdb_score": "7.0",
    "votes": 832,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 26,
    "reviews_from_critics": 5,
    "image_url": "https://m.media-amazon.com/images/M/MV5BODIzNWJhMmQtZTI5MS00YmRhLThhY2EtZjdmZjM0YTU0YWQyL2ltYWdlXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Barbara La Marr",
        "Charles Chaplin",
        "Dale Fuller",
        "Edith Murgatroyd",
        "Eleanor Boardman",
        "Erich von Stroheim",
        "Forrest Robinson",
        "Frank Mayo",
        "Fred Niblo",
        "Jean Hersholt",
        "Lew Cody",
        "Mae Busch",
        "Richard Dix",
        "Snitz Edwards",
        "William Haines"
    ],
    "directors": [
        "Rupert Hughes"
    ],
    "writers": [
        "Rupert Hughes"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Goldwyn Pictures Corporation"
}