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

{
    "id": 18678,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/18678?format=api",
    "title": "La battaglia dei sessi",
    "original_title": "The Battle of the Sexes",
    "year": 1928,
    "date_published": "1928-01-01",
    "duration": 88,
    "description": "Gum-chewing frizzy-haired gold-digger Marie Skinner cooks up a scheme with her lover Babe Winsor, a jazz hound, to fleece a portly, middle-aged real estate tycoon, William Judson. Marie ...",
    "long_description": "Gum-chewing frizzy-haired gold-digger Marie Skinner cooks up a scheme with her lover Babe Winsor, a jazz hound, to fleece a portly, middle-aged real estate tycoon, William Judson. Marie moves into Judson's apartment building and contrives to meet and seduce him, plying him with compliments, music, swoons, décolletage, and batted eyes. When his loyal wife (and their two children) see him out catting with Marie at a night club, mom's devastated and confronts him. He moves out. Babe wants Marie to sell Judson worthless bonds. Will mom commit suicide? Will sis shoot the floozy? Will pops figure out he's being a fool?",
    "avg_vote": "6.5",
    "imdb_score": "6.4",
    "votes": 399,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 12,
    "reviews_from_critics": 5,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTQ1NzcwOTUyMF5BMl5BanBnXkFtZTgwNDM0NDAwMjE@._V1_UY268_CR1,0,182,268_AL_.jpg",
    "actors": [
        "Belle Bennett",
        "Don Alvarado",
        "Jean Hersholt",
        "John Batten",
        "Phyllis Haver",
        "Sally O'Neil",
        "William Bakewell"
    ],
    "directors": [
        "D.W. Griffith"
    ],
    "writers": [
        "Daniel Carson Goodman",
        "Gerrit J. Lloyd"
    ],
    "genres": [
        "Comedy"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Feature Productions"
}