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

{
    "id": 18037,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18037?format=api",
    "title": "Il cantante di jazz",
    "original_title": "The Jazz Singer",
    "year": 1927,
    "date_published": "1928-02-04",
    "duration": 88,
    "description": "The son of a Jewish Cantor must defy the traditions of his religious father in order to pursue his dream of becoming a jazz singer.",
    "long_description": "Cantor Rabinowitz is concerned and upset because his son Jakie shows so little interest in carrying on the family's traditions and heritage. For five generations, men in the family have been cantors in the synagogue, but Jakie is more interested in jazz and ragtime music. One day, they have such a bitter argument that Jakie leaves home for good. After a few years on his own, now calling himself Jack Robin, he gets an important opportunity through the help of well-known stage performer Mary Dale. But Jakie finds that in order to balance his career, his relationship with Mary, and his memories of his family, he will be forced to make some difficult choices.",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 8989,
    "metascore": "66.0",
    "budget": 422000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 104,
    "reviews_from_critics": 63,
    "image_url": "https://m.media-amazon.com/images/M/MV5BOTUxNTk0MjEtZjQ5Yi00ODBhLTlkY2YtMDJhOWZmNDM1YWJkXkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Al Jolson",
        "Eugenie Besserer",
        "May McAvoy",
        "Otto Lederer",
        "Richard Tucker",
        "Robert Gordon",
        "Warner Oland",
        "Yossele Rosenblatt"
    ],
    "directors": [
        "Alan Crosland"
    ],
    "writers": [
        "Alfred A. Cohn",
        "Samson Raphaelson"
    ],
    "genres": [
        "Drama",
        "Music",
        "Musical"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Warner Bros."
}