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

{
    "id": 22268,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22268?format=api",
    "title": "La donna di platino",
    "original_title": "Platinum Blonde",
    "year": 1931,
    "date_published": "1933-11-01",
    "duration": 89,
    "description": "A young woman from a very rich family impulsively marries a reporter, but each assumes the other is the one whose lifestyle must change.",
    "long_description": "Reporter Gallagher loves reporter Smith who marries Anne. He's soon bored being married to a socialite and asks Gallagher to help him write a play. She arrives with a bunch of reporters and the mansion turns into a party. Anne arrives and orders them out and Smith goes with them.",
    "avg_vote": "6.9",
    "imdb_score": "6.9",
    "votes": 2751,
    "metascore": null,
    "budget": 600000,
    "budget_currency": "GBP",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 60,
    "reviews_from_critics": 27,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjIxODU1NDk4NV5BMl5BanBnXkFtZTgwNzIzMDMyMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Claud Allister",
        "Don Dillaway",
        "Edmund Breese",
        "Halliwell Hobbes",
        "Jean Harlow",
        "Loretta Young",
        "Louise Closser Hale",
        "Reginald Owen",
        "Robert Williams",
        "Walter Catlett"
    ],
    "directors": [
        "Frank Capra"
    ],
    "writers": [
        "Douglas W. Churchill",
        "Harry Chandlee"
    ],
    "genres": [
        "Comedy",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Columbia Pictures"
}