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

{
    "id": 23911,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23911?format=api",
    "title": "Ritorno alla vita",
    "original_title": "Counsellor at Law",
    "year": 1933,
    "date_published": "1933-12-25",
    "duration": 82,
    "description": "Successful attorney has his Jewish heritage and poverty-stricken background brought home to him when he learns his wife has been unfaithful.",
    "long_description": "Crackerjack lawyer George Simon is a workaholic, and a successful one, at that. Having just gotten a woman acquited of a murder charge, he is juggling cases ranging from breaking a will to quashing the disorderly conduct charges against the son of a woman he knew in the old neighborhood, before he became a hot shot counsellor. He adores his wife Cora, who feels she married a bit below her station. His step-children think so, too. His secretary Rexy adores him, although he is oblivious to the fact. Threatened with losing his practice due to a discretion in a case seven years earlier, his wife leaves for Europe until the scandal blows over, and he comes to realize (just in time) who his true friends are.",
    "avg_vote": "7.5",
    "imdb_score": "7.5",
    "votes": 1080,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 28,
    "reviews_from_critics": 14,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNjQzMmE2YTAtNDVjNS00OThkLWFjZTctNDc2YTlkNWUyZjkwXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Bebe Daniels",
        "Clara Langsner",
        "Doris Kenyon",
        "Isabel Jewell",
        "John Barrymore",
        "John Hammond Dailey",
        "Malka Kornstein",
        "Marvin Kline",
        "Mayo Methot",
        "Melvyn Douglas",
        "Onslow Stevens",
        "Robert Gordon",
        "T.H. Manning",
        "Thelma Todd",
        "Vincent Sherman"
    ],
    "directors": [
        "William Wyler"
    ],
    "writers": [
        "Elmer Rice"
    ],
    "genres": [
        "Comedy",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Italian",
        "Yiddish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Universal Pictures"
}