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

{
    "id": 21607,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21607?format=api",
    "title": "Una tragedia americana",
    "original_title": "An American Tragedy",
    "year": 1931,
    "date_published": "1931-08-22",
    "duration": 96,
    "description": "A poor factory worker, employed by a wealthy uncle, falls in love with a beautiful heiress but his happiness and promising future are jeopardized by a previous affair with a coworker he impregnated.",
    "long_description": "Having just reached adulthood, Clyde Griffiths has always lamented his lot in life, he the only son of poor missionaries. He has gotten a peripheral view of society life, to which he aspires, in his work as a bellhop at an upscale hotel. If being truthful to himself, he would admit that he lacks moral strength, he often taking the easiest but perhaps not the most ethical path to protect himself. Forced to move from place to place out of circumstance, he ends up in Lycurgus, New York working at the Samuel Griffiths Collar and Shirt factory, Samuel Griffiths his paternal uncle. Not knowing his uncle or his family, Clyde only wants a chance to get ahead, not expecting anything else from his wealthy relations. After an apprenticeship, Clyde ends up as the foreman in the stamping department. Despite a company rule forbidding foremen to fraternize with staff, especially those working in the same department, Clyde begins an affair, a clandestine one out of necessity, with Roberta Alden, who ...",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 661,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 27,
    "reviews_from_critics": 8,
    "image_url": "https://m.media-amazon.com/images/M/MV5BN2E3ZTRhMTAtYWNkMi00MTQ1LWE3OTUtN2RlZmRkMTJkMDJmXkEyXkFqcGdeQXVyNDcxNDkxMjA@._V1_UY268_CR2,0,182,268_AL_.jpg",
    "actors": [
        "Al Hart",
        "Arnold Korff",
        "Charles Middleton",
        "Claire McDowell",
        "Emmett Corrigan",
        "Fanny Midgley",
        "Frances Dee",
        "Frederick Burton",
        "Irving Pichel",
        "Lucille La Verne",
        "Phillips Holmes",
        "Russ Powell",
        "Sylvia Sidney",
        "Wallace Middleton"
    ],
    "directors": [
        "Josef von Sternberg"
    ],
    "writers": [
        "Samuel Hoffenstein",
        "Theodore Dreiser"
    ],
    "genres": [
        "Crime",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}