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

{
    "id": 23642,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/23642?format=api",
    "title": "Il vagabondo e la ballerina",
    "original_title": "Union Depot",
    "year": 1932,
    "date_published": "1932-04-18",
    "duration": 67,
    "description": "Travelers of different and varied backgrounds meet and interact on one night in a metropolitan train station and its environs.",
    "long_description": "Among the travelers of varied backgrounds that meet and interact on one night at Union Depot, a metropolitan train station, are Chick and his friend Scrap Iron, both newly released from prison after serving time for vagrancy. Hungry and desperate for a break, Chick fortuitously comes across across a valise abandoned by a drunken traveler. In it he finds a shaving kit and a suit of clothes with a bankroll, which help transform the affable tramp into a dashing gent. After buying himself a meal, Chick seeks some female companionship among the many hustlers who walk the station. He propositions Ruth Collins, a stranded, out-of-work showgirl and takes her to the station's hotel. However, he quickly realizes she's not a streetwalker but another hard luck victim of the Depression. Touched by the Ruth's sincerity, he vows to help her buy a ticket to Salt Lake City, where a job awaits her. Scrap Iron is lucky too, stumbling across a wallet with a claim check discarded by a pickpocket. When ...",
    "avg_vote": "7.0",
    "imdb_score": "7.0",
    "votes": 899,
    "metascore": null,
    "budget": 284000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 22,
    "reviews_from_critics": 10,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMDMyMzY2NjQtMjUwMC00Y2M2LWE5MTUtY2MyZmU5NzE2MDQ5XkEyXkFqcGdeQXVyNTY4NjI2OTA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Adrienne Dore",
        "Alan Hale",
        "David Landau",
        "Douglas Fairbanks Jr.",
        "Earle Foxe",
        "Frank McHugh",
        "George Rosener",
        "Guy Kibbee",
        "Joan Blondell"
    ],
    "directors": [
        "Alfred E. Green"
    ],
    "writers": [
        "Gene Fowler",
        "Joe Laurie Jr."
    ],
    "genres": [
        "Comedy",
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "First National Pictures"
}