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

{
    "id": 21910,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21910?format=api",
    "title": "Ragazze per la città",
    "original_title": "Girls About Town",
    "year": 1931,
    "date_published": "1931-11-07",
    "duration": 80,
    "description": "Two gold diggers prey on old rich men, but one of them falls in love with a young, rich man.",
    "long_description": "Gold-diggers Kay Francis and Lilyan Tashman meet susceptible lonely businessmen at conventions in this ribald preproduction code story. The millionaires lavish the girls with expensive gifts. Francis falls for poor but virtuous Joel McCrea. Eugene Paulette is a copper king who gives Tashman jewelry. His wife reacts not with jealously but by trying to imitate her rival's style.",
    "avg_vote": "7.0",
    "imdb_score": "6.9",
    "votes": 549,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 15,
    "reviews_from_critics": 10,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZGQxNDAwODAtMjU3OS00YTUyLTlmYTItOGUwNTkyMzEzODhmXkEyXkFqcGdeQXVyMjgxMTkzOQ@@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Alan Dinehart",
        "Anderson Lawler",
        "Eugene Pallette",
        "George Barbier",
        "Joel McCrea",
        "Judith Wood",
        "Kay Francis",
        "Lilyan Tashman",
        "Louise Beavers",
        "Lucile Browne",
        "Lucile Gleason",
        "Robert McWade"
    ],
    "directors": [
        "George Cukor"
    ],
    "writers": [
        "Raymond Griffith",
        "Zoe Akins"
    ],
    "genres": [
        "Comedy"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}