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

{
    "id": 13332,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/13332?format=api",
    "title": "Lorna Doone",
    "original_title": "Lorna Doone",
    "year": 1922,
    "date_published": "1923-09-17",
    "duration": 70,
    "description": "In 17th-century England, an outlaw clan kidnaps a young girl, who grows up among them. The farm boy who met her just before the kidnapping eventually rescues her, and they fall in love.",
    "long_description": "Lorna is a young noble girl who meets a young farmer boy named John Ridd. They immediately become infatuated with each other, but Lorna is kidnapped by the Doones, a group of bandits, and she is taken back to their village and raised as one of them. She is protected from the others by Sir Ensor Doone, the group's leader, because he has grown attached to her. After many years he becomes very ill and an upstart named Carver decides that he wants Lorna as his wife. Sir Ensor is powerless to protect her, so she must contact John to rescue her.",
    "avg_vote": "6.7",
    "imdb_score": "6.7",
    "votes": 272,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 15,
    "reviews_from_critics": 8,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTU1NDQyNDY5OF5BMl5BanBnXkFtZTgwOTY0NDIwMjE@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Charles Hatton",
        "Donald MacDonald",
        "Frank Keenan",
        "Jack McDonald",
        "John Bowers",
        "Madge Bellamy",
        "Mae Giraci",
        "Norris Johnson"
    ],
    "directors": [
        "Maurice Tourneur"
    ],
    "writers": [
        "Katherine S. Reed",
        "R.D. Blackmore"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Thomas H. Ince Corporation"
}