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

{
    "id": 16654,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16654?format=api",
    "title": "Il pirata nero",
    "original_title": "The Black Pirate",
    "year": 1926,
    "date_published": "1926-03-08",
    "duration": 88,
    "description": "Seeking revenge, an athletic young man joins the pirate band responsible for his father's death.",
    "long_description": "A nobleman vows to avenge the death of his father at the hands of pirates. To this end he infiltrates the pirate band. Acting in character he is instrumental in the capture of a ship, but things are complicated when he finds that there is a young woman on board whom he wishes to protect from the threat of rape.",
    "avg_vote": "7.1",
    "imdb_score": "7.1",
    "votes": 1679,
    "metascore": null,
    "budget": 1300000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 34,
    "reviews_from_critics": 26,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMzU0NDkyMjEzMV5BMl5BanBnXkFtZTgwMTcyMzEyMjE@._V1_UY268_CR2,0,182,268_AL_.jpg",
    "actors": [
        "Anders Randolf",
        "Billie Dove",
        "Charles Belcher",
        "Charles Stevens",
        "Donald Crisp",
        "Douglas Fairbanks",
        "E.J. Ratcliffe",
        "Fred Becker",
        "John Wallace",
        "Sam De Grasse",
        "Tempe Pigott"
    ],
    "directors": [
        "Albert Parker"
    ],
    "writers": [
        "Douglas Fairbanks",
        "Jack Cunningham"
    ],
    "genres": [
        "Action",
        "Adventure"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Elton Corporation"
}