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

{
    "id": 24594,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24594?format=api",
    "title": "Son of a Sailor",
    "original_title": "Son of a Sailor",
    "year": 1933,
    "date_published": "1933-12-23",
    "duration": 73,
    "description": "A smooth-talking sailor looking for a quick date meets the granddaughter of an admiral and finds himself in a house full of top Navy officers, along with a couple of spies interested in plans for a new robot-controlled flight system.",
    "long_description": "Sailor Handsome from the aircraft carrier Saratoga meets in San Francisco Helen, a relative of his admiral. Invited at his home he meets a friend from his ship who has invented an autopilot for the planes. Two spies are trying to steal the plans, as well as the autopilot that is already installed at a plane. Handsome tries to stop them from doing this...",
    "avg_vote": "5.9",
    "imdb_score": "5.9",
    "votes": 159,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 4,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BYzk3Zjk5YjAtNjA4Yi00NGMyLWJlYjgtOTVlNjA2OWIyZGZlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMDMxMjQwMw@@._V1_UY268_CR15,0,182,268_AL_.jpg",
    "actors": [
        "Arthur Vinton",
        "Frank McHugh",
        "George Blackwood",
        "George Irving",
        "Jean Muir",
        "Joe E. Brown",
        "Johnny Mack Brown",
        "Kenneth Thomson",
        "Merna Kennedy",
        "Noel Francis",
        "Samuel S. Hinds",
        "Sheila Terry",
        "Thelma Todd"
    ],
    "directors": [
        "Lloyd Bacon"
    ],
    "writers": [
        "Alfred A. Cohn",
        "Paul Gerard Smith"
    ],
    "genres": [
        "Adventure",
        "Comedy"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "First National Pictures"
}