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

{
    "id": 15163,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/15163?format=api",
    "title": "Il navigatore",
    "original_title": "The Navigator",
    "year": 1924,
    "date_published": "1925-08-07",
    "duration": 59,
    "description": "Two spoiled rich people find themselves trapped on an empty passenger ship.",
    "long_description": "Rollo decides to marry his sweetheart Betsy and sail to Honolulu. When she rejects him he decides to go alone but boards the wrong ship, the \"Navigator\" owned by Betsy's father. Unaware of this, Betsy boards the ship to look for her father. whom spies capture before cutting the ship loose. It drifts out to sea with the two socialites each unaware of there being anyone else on board.",
    "avg_vote": "7.7",
    "imdb_score": "7.7",
    "votes": 9007,
    "metascore": null,
    "budget": 220000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 55,
    "reviews_from_critics": 39,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMzA1ODQ1Nzk0MV5BMl5BanBnXkFtZTgwOTEwNTQ2MzE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Buster Keaton",
        "Frederick Vroom",
        "Kathryn McGuire"
    ],
    "directors": [
        "Buster Keaton",
        "Donald Crisp"
    ],
    "writers": [
        "Clyde Bruckman",
        "Joseph A. Mitchell"
    ],
    "genres": [
        "Action",
        "Comedy",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Buster Keaton Productions"
}