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

{
    "id": 24809,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/24809?format=api",
    "title": "Un grullo in bicicletta",
    "original_title": "6 Day Bike Rider",
    "year": 1934,
    "date_published": "1935-01-01",
    "duration": 69,
    "description": "To get his girl back, that has fallen for a biker, a worker and one of his friends enter a six day race.",
    "long_description": "Small-town bumpkin Winfred Simpson is annoyed by the attention paid to his girl, Phyllis Jenkins, by a hotshot trick cyclist, Harry St. Clair, breezing through and impressing the locals on a personal appearance tour at the town theatre. When Phyllis turns Winfred down, he hits the road to become a success at the big 6-Day bike race. He meets Clinton Hemmings and they become partners as it is a two-man event, and get practice time for the race by getting jobs as bicycle messengers. Winfred, delivering a message to St. Clair at his hotel, mistakes a voice he hears in St. Clair's room as Phyllis, gets into a fight with him and hauled off to the pokey. The race starts without him, with Clinton riding alone. Finally getting released from jail, Winfred races on a \"borrowed\" bike to the \"Velodrome\" and enters the race just in time. An ether-saturated cloth, caught in his rear-wheel spokes, aids him more than a little as the other riders are overcome from the fumes when they try to pass him.",
    "avg_vote": "6.1",
    "imdb_score": "6.1",
    "votes": 304,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 8,
    "reviews_from_critics": 3,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNTI1Nzc2ZmEtYWMxYy00Y2U5LThlZTYtYmViYWY0ZjI5OWEyXkEyXkFqcGdeQXVyMTMyMTUwNzc@._V1_UY268_CR2,0,182,268_AL_.jpg",
    "actors": [
        "Arthur Aylesworth",
        "Dorothy Christy",
        "Frank McHugh",
        "Gordon Westcott",
        "Joe E. Brown",
        "Lloyd Neal",
        "Lottie Williams",
        "Maxine Doyle",
        "William Granger"
    ],
    "directors": [
        "Lloyd Bacon"
    ],
    "writers": [
        "Earl Baldwin"
    ],
    "genres": [
        "Comedy",
        "Romance",
        "Sport"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "First National Pictures"
}