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

{
    "id": 20902,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20902?format=api",
    "title": "Chi non cerca... trova",
    "original_title": "Free and Easy",
    "year": 1930,
    "date_published": "1930-03-22",
    "duration": 92,
    "description": "A bumbling manager tries to get a small town beauty contest winner into the movies.",
    "long_description": "Gopher City Kansas hosts a beauty contest. The winner, Elvira Plunkett, and her mother go to Hollywood. The Chamber of Commerce also provides Elvira with an agent, Gopher City's own Elmer J. Butz. Elmer likes Elvira and the shy Elvira likes him, but Mrs. Plunkett, a formidable woman, has little use for hapless Elmer. On the train west, they meet movie star Larry Mitchell, who takes a shine to Elvira and helps her meet MGM directors once they get to Tinsel Town. Elmer, meanwhile, wants to help Elvira with her career and he also wants to be her man. Movie stardom does come to the Gopher City entourage, but to whom is a surprise. And who will win the lovely Elvira's hand?",
    "avg_vote": "5.6",
    "imdb_score": "5.6",
    "votes": 816,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 30,
    "reviews_from_critics": 11,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYWZjNWVjMDItYWE1My00MTIwLTliYTMtYjhhODc1MGIzZTM2XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Anita Page",
        "Buster Keaton",
        "David Burton",
        "Dorothy Sebastian",
        "Edgar Dearing",
        "Fred Niblo",
        "Gwen Lee",
        "John Miljan",
        "Karl Dane",
        "Lionel Barrymore",
        "Robert Montgomery",
        "Trixie Friganza",
        "William Collier Sr.",
        "William Haines"
    ],
    "directors": [
        "Edward Sedgwick"
    ],
    "writers": [
        "Paul Dickey",
        "Richard Schayer"
    ],
    "genres": [
        "Comedy",
        "Musical"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}