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

{
    "id": 21963,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21963?format=api",
    "title": "Il capitano",
    "original_title": "His Woman",
    "year": 1931,
    "date_published": "1933-01-01",
    "duration": 76,
    "description": "A woman masquerades as a missionary's daughter to get on a ship bound to New York.",
    "long_description": "Tough Caribbean freighter Captain Sam Whelan engages Sally Clark, a tramp masquerading as a missionary's daughter, to care for an abandoned baby on board his ship. En route to New York, ships mate Gatson sexually attacks her. The Captain knocks Gatson overboard in an ensuing scuffle. A romance developing between the Captain and Miss Clark is put to the test in New York after an assault investigation uncovers the girl's questionable past.",
    "avg_vote": "5.9",
    "imdb_score": "5.9",
    "votes": 129,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 7,
    "reviews_from_critics": 1,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMGFhMTU0N2ItYzg0MS00NGRhLTgwZmEtMGY1Njk4M2M1ZDUyXkEyXkFqcGdeQXVyNTUyNzA5ODE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Averell Harris",
        "Charlotte Wynters",
        "Claudette Colbert",
        "Gary Cooper",
        "Hamtree Harrington",
        "Joan Blair",
        "Joseph Calleia",
        "Sidney Easton"
    ],
    "directors": [
        "Edward Sloman"
    ],
    "writers": [
        "Dale Collins",
        "Melville Baker"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}