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

{
    "id": 6509,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/6509?format=api",
    "title": "The Children in the House",
    "original_title": "The Children in the House",
    "year": 1916,
    "date_published": "1916-04-30",
    "duration": 50,
    "description": "Roy Somerville has turned out a rather interesting story that will hold the interest of the majority of audiences as produced by the Triangle-Fine Arts Company. It is a five-reel feature ...",
    "long_description": "Roy Somerville has turned out a rather interesting story that will hold the interest of the majority of audiences as produced by the Triangle-Fine Arts Company. It is a five-reel feature and was produced under the direction of C.M. and S.S. Franklin, with Norma Talmadge as the star. Cora (Norma Talmadge) is wedded to Arthur Vincent (Eugene Pallette) and there are two children. Vincent is the son of the president of a bank and is devoting the greater part of his time to Jane Courtenay, a cabaret dancer, who is willing to have him devote his time to her as long as he is a good provider. The wife, who has been sadly neglected, turns to her sister, who is wedded to Fred Brown, a young detective. His brother Charles, who works in the elder Vincent's bank as a cashier, lives with them. He was Cora's first love and has never quite recovered from the fact that she jilted him to wed Vincent because of his money. The cabaret dancer makes several demands on the young Vincent, who tries to borrow...",
    "avg_vote": "4.5",
    "imdb_score": "4.5",
    "votes": 560,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 5,
    "reviews_from_critics": null,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjU1MTgzODU5M15BMl5BanBnXkFtZTcwMjU1NDE2Mw@@._V1_UY268_CR43,0,182,268_AL_.jpg",
    "actors": [
        "'Baby' Carmen De Rue",
        "Alice Wilson",
        "Alva D. Blake",
        "Eugene Pallette",
        "Francis Carpenter",
        "George C. Pearce",
        "Georgie Stone",
        "Jewel Carmen",
        "Ninon Fovieri",
        "Norma Talmadge",
        "Violet Radcliffe",
        "W.E. Lawrence",
        "Walter Long",
        "William Hinckley"
    ],
    "directors": [
        "Chester M. Franklin",
        "Sidney Franklin"
    ],
    "writers": [
        "Roy Somerville"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Fine Arts Film Company"
}