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

{
    "id": 21917,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21917?format=api",
    "title": "God's Gift to Women",
    "original_title": "God's Gift to Women",
    "year": 1931,
    "date_published": "1931-04-13",
    "duration": 72,
    "description": "A Parisian descendant of Don Juan vows to stop philandering in order to win the hand of a virtous young lady with a disapproving father.",
    "long_description": "Contemporary Casanova Toto loves beautiful women and pursues them shamelessly. Then he falls in love with respectable Mary and realizes that to win her he must stop his philandering. But Mary has little confidence in Toto's resolve and concocts a plan of her own.",
    "avg_vote": "5.3",
    "imdb_score": "5.3",
    "votes": 317,
    "metascore": null,
    "budget": 220000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 12,
    "reviews_from_critics": 6,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTg4NzYwMjM3MF5BMl5BanBnXkFtZTgwODEyNzg3MzE@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Alan Mowbray",
        "Armand Kaliz",
        "Arthur Edmund Carewe",
        "Billy House",
        "Charles Judels",
        "Charles Winninger",
        "Eleanor Gutöhrlein",
        "Frank Fay",
        "Joan Blondell",
        "John T. Murray",
        "Laura La Plante",
        "Louise Brooks",
        "Margaret Livingston",
        "Tyrell Davis",
        "Yola d'Avril"
    ],
    "directors": [
        "Michael Curtiz"
    ],
    "writers": [
        "Joseph Jackson",
        "Raymond Griffith"
    ],
    "genres": [
        "Comedy",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Warner Bros."
}