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

{
    "id": 24625,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24625?format=api",
    "title": "A Study in Scarlet",
    "original_title": "A Study in Scarlet",
    "year": 1933,
    "date_published": "1933-05-14",
    "duration": 72,
    "description": "In London, a secret society led by lawyer Thaddeus Merrydew collects the assets of any of its deceased members and divides them among the remaining members. Society members start dropping ...",
    "long_description": "In London, a secret society led by lawyer Thaddeus Merrydew collects the assets of any of its deceased members and divides them among the remaining members. Society members start dropping like flies. Sherlock Holmes is approached by member James Murphy's widow, who is miffed at being left penniless by her husband. When Captain Pyke is shot, Holmes keys in on his mysterious Chinese widow as well as the shady Merrydew. Other members keep dying--Malcom Dearing first, then Mr. Baker. There is also an attempt on the life of young Eileen Forrester, who became a reluctant society member upon the death of her father. Holmes' uncanny observations and insights are put to the test.",
    "avg_vote": "5.7",
    "imdb_score": "5.7",
    "votes": 818,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 26,
    "reviews_from_critics": 11,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMmVhYTdlOWEtM2UxZi00MDEwLTkzOWQtNGNiY2IzMTg5ZTgzXkEyXkFqcGdeQXVyMjYzMDY1NTg@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Alan Dinehart",
        "Alan Mowbray",
        "Anna May Wong",
        "Billy Bevan",
        "Doris Lloyd",
        "Halliwell Hobbes",
        "J.M. Kerrigan",
        "John Warburton",
        "June Clyde",
        "Leila Bennett",
        "Reginald Owen",
        "Warburton Gamble",
        "Wyndham Standing"
    ],
    "directors": [
        "Edwin L. Marin"
    ],
    "writers": [
        "Arthur Conan Doyle",
        "Robert Florey"
    ],
    "genres": [
        "Mystery",
        "Thriller"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "K.B.S. Productions Inc."
}