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

{
    "id": 16548,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/16548?format=api",
    "title": "A Woman of the World",
    "original_title": "A Woman of the World",
    "year": 1925,
    "date_published": "1925-12-28",
    "duration": 70,
    "description": "A sensual European countess arrives at a small American town where she quickly provokes moral outrage from the community. Upon arriving, even before she steps out of her taxi a district ...",
    "long_description": "A sensual European countess arrives at a small American town where she quickly provokes moral outrage from the community. Upon arriving, even before she steps out of her taxi a district attorney informs her that loose women aren't welcome here. Donning a cigarette holder she explains with a seductive smile that she comes from Italy and asks for directions to her cousins château. The femme fatales exploits include drinking, smoking in public, enticing men, wearing extravagant garments and boasting a tattoo of a skull on her forearm.",
    "avg_vote": "6.9",
    "imdb_score": "6.9",
    "votes": 126,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 7,
    "reviews_from_critics": 1,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNTZjNTIwNDItYjM5Yy00ZmJhLWFkZDAtNzAwZWU4NDg3NmEyXkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_UY268_CR5,0,182,268_AL_.jpg",
    "actors": [
        "Blanche Mehaffey",
        "Charles Emmett Mack",
        "Chester Conklin",
        "Dorothea Wolbert",
        "Dot Farley",
        "Guy Oliver",
        "Holmes Herbert",
        "Lucille Ward",
        "May Foster",
        "Pola Negri"
    ],
    "directors": [
        "Malcolm St. Clair"
    ],
    "writers": [
        "Carl Van Vechten",
        "Pierre Collings"
    ],
    "genres": [
        "Comedy",
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}