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

{
    "id": 10951056,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10951056?format=api",
    "title": "D.N.A.: Decisamente non adatti",
    "original_title": "D.N.A.: Decisamente non adatti",
    "year": 2020,
    "date_published": "2020-06-15",
    "duration": 84,
    "description": "DNA Wholly Unsuited is the result when two primary school friends who meet again as adults decide to improve their lives by swapping genetic codes.",
    "long_description": "DNA Wholly Unsuited is the result when two primary school friends who meet again as adults decide to improve their lives by swapping genetic codes.",
    "avg_vote": "5.2",
    "imdb_score": "5.3",
    "votes": 261,
    "metascore": null,
    "budget": 2500000,
    "budget_currency": "EUR",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 2,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNDRiMTBkYzYtY2NiMS00MmM5LWI0OGItOGQ5NDMxNTQ4NTQ1XkEyXkFqcGdeQXVyNTMxODAyNTE@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Alessio Di Domenicantonio",
        "Anna Foglietta",
        "Claudio Gregori",
        "Emanuele Salce",
        "Fabrizio Sabatucci",
        "Federico Jahier",
        "Gianni Fantoni",
        "Lallo Circosta",
        "Marco Marzocca",
        "Massimiliano Vado",
        "Max Paiella",
        "Pasquale Petrolo",
        "Renato Zappalà",
        "Simone Colombari",
        "Stefano De Sando"
    ],
    "directors": [
        "Claudio Gregori",
        "Pasquale Petrolo"
    ],
    "writers": [
        "Claudio Gregori",
        "Edoardo Maria Falcone"
    ],
    "genres": [
        "Comedy"
    ],
    "countries": [
        "Italy"
    ],
    "languages": [
        "Italian"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Lucky Red"
}