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

{
    "id": 23684,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23684?format=api",
    "title": "Westward Passage",
    "original_title": "Westward Passage",
    "year": 1932,
    "date_published": "1932-05-27",
    "duration": 73,
    "description": "A struggling writer divorces his wife to pursue his career without interference, but they meet in Europe years later after she has remarried.",
    "long_description": "Struggling writer Nick Allen and socialite Olivia Van Tyne marry and live frugally because Nick refuses to compromise his writing to satisfy his publisher. However, when they have an unwanted child, he does become a \"hack\" writer to feed the baby, little Olivia, and he resents it. Three years later, little Olivia interferes too much in his work, so he finds his own apartment and eventually divorces Olivia, who then marries gentle and kindly Harry Ottendorf. Not seeing each other for six more years, Olivia and Nick accidentally meet in Lucerne, Switzerland, while she, Harry and little Olivia are on vacation, and Nick, now a famous author, is on tour promoting his new book. When Harry has to go back to the States on business, Nick tries to rekindle Olivia's flickering love, but she repels him. Later, Olivia finds that Nick has also booked a room on the ship going home so they can take the westward passage together. Olivia is torn between her loyalty to Harry and her burgeoning love for ...",
    "avg_vote": "5.5",
    "imdb_score": "5.5",
    "votes": 257,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 12,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMDg1ZGM2NzAtMzkyNi00YWYzLTlmYjgtMGE4MmJlYjQ2NzQ1XkEyXkFqcGdeQXVyMzYyMzU2OA@@._V1_UY268_CR78,0,182,268_AL_.jpg",
    "actors": [
        "Ann Harding",
        "Bonita Granville",
        "Don Alvarado",
        "Edgar Kennedy",
        "Emmett King",
        "Ethel Griffies",
        "Florence Lake",
        "Florence Roberts",
        "Herman Bing",
        "Irene Purcell",
        "Irving Pichel",
        "Juliette Compton",
        "Laurence Olivier",
        "Zasu Pitts"
    ],
    "directors": [
        "Robert Milton"
    ],
    "writers": [
        "Bradley King",
        "Margaret Ayer Barnes"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "French",
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "RKO Pathé Pictures"
}