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

{
    "id": 22397,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22397?format=api",
    "title": "Skippy",
    "original_title": "Skippy",
    "year": 1931,
    "date_published": "1931-04-25",
    "duration": 85,
    "description": "Skippy, the mischievous son of a wealthy doctor, meets Sooky in poverty-ridden Shantytown, and together they try to save Sooky's pet from a cruel dogcatcher.",
    "long_description": "Precocious adolescent Skippy Skinner spends most of his time trying to get around doing those things that his parents want him to do (like brush his teeth), while doing those things his parents don't want him to do. Chief among the latter is spending time across the railroad tracks in Shantytown, instead of playing with \"clean\" neighborhood kids like brother and sister Sidney and Eloise. Skippy's father, Dr. Herbert Skinner, the city's head of the health board, in particular doesn't like Skippy spending time there as Dr. Skinner is a verminophobe, and believes Shantytown is dirty and unhealthy. On Skippy's latest visit to Shantytown when he meets a new friend named Sooky Wayne, he learns that Shantytown is being torn down and its poor residents have to move. And Sooky's mongrel and unlicensed (since Mrs. Wayne can't afford the $3 license fee) dog Penny is captured by the city's dog catcher. As Skippy does whatever he can to raise the $3 to get Penny back for his new friend (which ...",
    "avg_vote": "6.3",
    "imdb_score": "6.3",
    "votes": 683,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 8,
    "reviews_from_critics": 14,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTg0Mzc1OTg4NF5BMl5BanBnXkFtZTcwMDM1MjQxMw@@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Carl R. Botefuhr",
        "Donald Haines",
        "Enid Bennett",
        "Guy Oliver",
        "Helen Jerome Eddy",
        "Jack Rube Clifford",
        "Jackie Cooper",
        "Jackie Searl",
        "Mitzi Green",
        "Robert Coogan",
        "Willard Robertson"
    ],
    "directors": [
        "Norman Taurog"
    ],
    "writers": [
        "Percy Crosby",
        "Sam Mintz"
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Family"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}