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

{
    "id": 11513,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11513?format=api",
    "title": "Nomads of the North",
    "original_title": "Nomads of the North",
    "year": 1920,
    "date_published": "1920-09-26",
    "duration": 109,
    "description": "A Canadian Mountie allows an innocent fugitive to escape with the women he loves.",
    "long_description": "In the mountains, the beautiful Nanette waits for her lost love Raoul to return to her. When the villainous Buck McDougall persuades her that Raoul is dead, she consents to marry him, that is until Raoul suddenly turns up at the ceremony right before vows are exchanged. She returns to the man she loves, which angers Buck. He proceeds to frame Raoul for murder. When Raoul and Nanette run away into the wilderness, Buck gets Corporal O'Connor on their trail, since he also harbors unrequited feelings for Nanette and believes she has been kidnapped.",
    "avg_vote": "5.7",
    "imdb_score": "5.7",
    "votes": 193,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 11,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZDgwNjkwZTgtNGZkZC00ODgzLTg0NTktMzkxN2EyYWY4MjRlXkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Betty Blythe",
        "Francis McDonald",
        "Lewis Stone",
        "Lon Chaney",
        "Melbourne MacDowell",
        "Spottiswoode Aitken"
    ],
    "directors": [
        "David Hartford"
    ],
    "writers": [
        "David Hartford",
        "James Oliver Curwood"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "James Oliver Curwood Productions Inc."
}