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

{
    "id": 21746,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21746?format=api",
    "title": "I pionieri del West",
    "original_title": "Cimarron",
    "year": 1931,
    "date_published": "1931-02-09",
    "duration": 123,
    "description": "A newspaper editor settles in an Oklahoma boom town with his reluctant wife at the end of the nineteenth century.",
    "long_description": "When the government opens up the Oklahoma territory for settlement, restless Yancey Cravat claims a plot of the free land for himself and moves his family there from Wichita. A newspaperman, lawyer, and just about everything else, Cravat soon becomes a leading citizen of the boom town of Osage. Once the town is established, however, he begins to feel confined once again, and heads for the Cherokee Strip, leaving his family behind. During this and other absences, his wife Sabra must learn to take care of herself and soon becomes prominent in her own right.",
    "avg_vote": "5.9",
    "imdb_score": "5.9",
    "votes": 5389,
    "metascore": "70.0",
    "budget": 1433000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 75,
    "reviews_from_critics": 40,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYWQwZGM0MTktNDM1NC00MTZlLTllNzctYTllZWI2MzdiNmMyXkEyXkFqcGdeQXVyNjUwMzI2NzU@._V1_UY268_CR1,0,182,268_AL_.jpg",
    "actors": [
        "Edna May Oliver",
        "Estelle Taylor",
        "Eugene Jackson",
        "George E. Stone",
        "Irene Dunne",
        "Judith Barrett",
        "Nance O'Neil",
        "Richard Dix",
        "Robert McWade",
        "Roberta Gregory",
        "Roscoe Ates",
        "Stanley Fields",
        "William Collier Jr."
    ],
    "directors": [
        "Wesley Ruggles"
    ],
    "writers": [
        "Edna Ferber",
        "Howard Estabrook"
    ],
    "genres": [
        "Drama",
        "Western"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French"
    ],
    "rated": "Not rated or unkown rating",
    "company": "RKO Radio Pictures"
}