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

{
    "id": 15841,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/15841?format=api",
    "title": "Viva lo sport",
    "original_title": "The Freshman",
    "year": 1925,
    "date_published": "1925-09-20",
    "duration": 77,
    "description": "A nerdy college student will do anything to become popular on campus.",
    "long_description": "Harold Lamb's dream is to go to college and become the most popular student on campus, much like the character Speedy played by actor Lester Laurel in the movie \"The College Hero\". Accepted into Tate College, Harold plans on emulating Speedy, including giving himself the nickname Speedy, to gain that popularity, not realizing that if he does so, he will be more the buffoon than the hero. To be the most popular student, he will have to outdo the current most popular student, football captain Chet Trask. Unaware Speedy's task is made all the more difficult when one of the upperclassmen, seeing how hard Speedy is trying to impress, does whatever he can to make Speedy look all the more ridiculous, all the while Speedy believing he is achieving his dream. The bully's efforts are made all the more easy as Speedy is able to buy his way to seeming popularity with the small nest egg he was able to accumulate from work. The one thing that Speedy may not be able to buy is his way onto the ...",
    "avg_vote": "7.5",
    "imdb_score": "7.5",
    "votes": 4953,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 1392,
    "worldwide_gross_income": null,
    "reviews_from_users": 36,
    "reviews_from_critics": 39,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMGJmNTE4MGYtZWY2My00YmUzLWFiOWUtY2VkNmEzZGQ1ZGViXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Brooks Benedict",
        "Harold Lloyd",
        "Hazel Keener",
        "James H. Anderson",
        "Jobyna Ralston",
        "Joseph Harrington",
        "Pat Harmon"
    ],
    "directors": [
        "Fred C. Newmeyer",
        "Sam Taylor"
    ],
    "writers": [
        "Sam Taylor",
        "Ted Wilde"
    ],
    "genres": [
        "Comedy",
        "Family",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "The Harold Lloyd Corporation"
}