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

{
    "id": 7610,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/7610?format=api",
    "title": "'49-'17",
    "original_title": "'49-'17",
    "year": 1917,
    "date_published": "1917-10-15",
    "duration": 61,
    "description": "A retired judge comes West to restore a ghost town.",
    "long_description": "A judge who had taken part in the gold rush of 1849 hires an acting troupe to recreate the experience in this rather fanciful silent Western. The make-believe turns serious when a real gold-mine is discovered nearby and a local girl is kidnapped by a nasty gambler.",
    "avg_vote": "5.9",
    "imdb_score": "5.9",
    "votes": 270,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 12,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNGYyNzY4MWUtOTllNS00MjVjLWExNTktYjcwMWFlOTE0ZTQ1XkEyXkFqcGdeQXVyNTM3MDMyMDQ@._V1_UY268_CR9,0,182,268_AL_.jpg",
    "actors": [
        "Donna Drew",
        "George C. Pearce",
        "Jean Hersholt",
        "Joseph W. Girard",
        "Leo Pierson",
        "Mattie Witting",
        "William Dyer"
    ],
    "directors": [
        "Ruth Ann Baldwin"
    ],
    "writers": [
        "Ruth Ann Baldwin",
        "William Wallace Cook"
    ],
    "genres": [
        "Drama",
        "Western"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Universal Film Manufacturing Company"
}