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

{
    "id": 16627,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16627?format=api",
    "title": "Bardelys il magnifico",
    "original_title": "Bardelys the Magnificent",
    "year": 1926,
    "date_published": "1926-09-30",
    "duration": 90,
    "description": "Rafael Sabatini's story of the swashbuckling era and of Bardelys, the handsome courtier who could win any woman he set his mind to...and was not above boasting about it to all who would listen.",
    "long_description": "In the court of French king Louis XIII, a courtier named Bardelys carries with him a grand reputation as an irresistible ladies' man. When another figure in the court, Chatellerault, fails to win the hand of the beautiful Roxalanne (whose family fortune the king wishes to bring under his control), Bardelys suggests that he could win the young woman's hand. Thus a bet is made, and Bardelys embarks on the pursuit of Roxalanne and her fortune. But intrigue and mistaken identity lead Bardelys into grave danger.",
    "avg_vote": "7.0",
    "imdb_score": "6.9",
    "votes": 1062,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": 490467,
    "worldwide_gross_income": null,
    "reviews_from_users": 17,
    "reviews_from_critics": 15,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTQ4ODY5MjY0OV5BMl5BanBnXkFtZTcwMTQ0ODk3Mg@@._V1_UY268_CR5,0,182,268_AL_.jpg",
    "actors": [
        "Arthur Lubin",
        "Daniel G. Tomlinson",
        "Edward Connelly",
        "Eleanor Boardman",
        "Emile Chautard",
        "Emily Fitzroy",
        "Fred Malatesta",
        "George K. Arthur",
        "Joe Smith Marba",
        "John Gilbert",
        "John T. Murray",
        "Karl Dane",
        "Lionel Belmore",
        "Roy D'Arcy",
        "Theodore von Eltz"
    ],
    "directors": [
        "King Vidor"
    ],
    "writers": [
        "Dorothy Farnum",
        "Rafael Sabatini"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}