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

{
    "id": 21276,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/21276?format=api",
    "title": "Vertigine",
    "original_title": "Puttin' on the Ritz",
    "year": 1930,
    "date_published": "1930-03-01",
    "duration": 88,
    "description": "A vaudeville and nightclub performer becomes successful and forgets who his friends really are.",
    "long_description": "Crooner Harry Raymond and best friend James Tierney are working for a musical promoter when they meet Dolores Fenton who is trying to make ends meet by selling one of her songs. Raymond collaborates with Miss Fenton on her music but gets fired overzealoulsy selling it to his boss. Raymond and Tierney, along with their girlfriends, work in vaudeville until they are separated by a Broadway offer for Raymond and girlfriend Dolores. Success comes to the crooning Raymond in New York. He starts hobnobbing with high society, drinking heavily, and forgetting his old friends. It's a formula for a big fall.",
    "avg_vote": "5.7",
    "imdb_score": "5.7",
    "votes": 115,
    "metascore": null,
    "budget": 800000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 8,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTc5YmI1NDctY2NhMS00YjYzLWE2ZmItYzZiM2E0ZTViMzRmXkEyXkFqcGdeQXVyNDcxNDkxMjA@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Aileen Pringle",
        "Eddie Kane",
        "George Irving",
        "Harry Richman",
        "James Gleason",
        "Joan Bennett",
        "Lilyan Tashman",
        "Purnell Pratt",
        "Richard Tucker",
        "Sidney Franklin"
    ],
    "directors": [
        "Edward Sloman"
    ],
    "writers": [
        "Billy K. Wells",
        "James Gleason"
    ],
    "genres": [
        "Music",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Joseph M. Schenck Productions"
}