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

{
    "id": 23878,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23878?format=api",
    "title": "Ala errante",
    "original_title": "Central Airport",
    "year": 1933,
    "date_published": "1933-04-15",
    "duration": 72,
    "description": "Aviator Jim Blaine and his brother Neil are rivals not only as daredevil flyers, but also for the love of parachutist Jill Collins.",
    "long_description": "Commercial pilot Jim Blair is blackballed after his plane crashes in a thunderstorm. Depressed, he begins working as a bank teller until he meets beautiful Jill Collins, a barnstorming parachutist working with her daredevil pilot brother. Jim's immediately attracted, and when her brother's killed in a freak crash, he reveals his past to her and volunteers to replace her dead sibling in their air carnival act. As they tour throughout the Southwest, their affection turns physically intimate when they're on the road as they characteristically sleep in adjoining hotel rooms. Jill wants marriage but is resisted by Jim, who believes that his risky lifestyle precludes the luxury of a wife and family. When Jim's brother Bud joins them, he too is immediately attracted to Jill but respects his brother's relationship, However, after another freak accident puts Jim in the hospital for a prolonged convalescence, Jim returns to find them married and in bed together. Angry and bitter, he becomes a ...",
    "avg_vote": "6.3",
    "imdb_score": "6.3",
    "votes": 348,
    "metascore": null,
    "budget": 365000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 22,
    "reviews_from_critics": 5,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTkwMzgxMDgyOV5BMl5BanBnXkFtZTcwNTU3NjYxNA@@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Arthur Vinton",
        "Charles Sellon",
        "Claire McDowell",
        "Grant Mitchell",
        "Harold Huber",
        "James Murray",
        "Milton Kibbee",
        "Richard Barthelmess",
        "Robert W. Craig",
        "Sally Eilers",
        "Tom Brown",
        "Willard Robertson"
    ],
    "directors": [
        "Alfred E. Green",
        "William A. Wellman"
    ],
    "writers": [
        "Jack Moffitt",
        "Rian James"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "Spanish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "First National Pictures"
}