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

{
    "id": 11254858,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11254858?format=api",
    "title": "Yo, adolescente",
    "original_title": "Yo, adolescente",
    "year": 2019,
    "date_published": "2019-11-18",
    "duration": 97,
    "description": "After the suicide of his best friend and the fire of a local dance called Cromañón, including recitals, illegal parties in an abandoned warehouse and high school, a year passes by in the ...",
    "long_description": "After the suicide of his best friend and the fire of a local dance called Cromañón, including recitals, illegal parties in an abandoned warehouse and high school, a year passes by in the life of Zabo who writes everything he feels and lives in his blog, \"Memories of a teenager\".",
    "avg_vote": "6.4",
    "imdb_score": "6.5",
    "votes": 319,
    "metascore": null,
    "budget": 20000000,
    "budget_currency": "ARS",
    "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/MV5BNmVhYzkzNTYtZTAyZC00NjQ5LTk4Y2MtMGUzMTgyMGZlYjZkXkEyXkFqcGdeQXVyMTQ3NTcwOA@@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Agustina Cabo",
        "Bruno Giganti",
        "Gregorio Barrios",
        "Hernán Morán",
        "Jerónimo Bosia",
        "Majo Chicar",
        "Malena Narvay",
        "María Lía Bagnoli",
        "Pachi Lucas",
        "Renato Quattordio",
        "Santiago Stieben",
        "Thomas Lepera",
        "Tomas Raimondi",
        "Tomás Agüero",
        "Walter Rodríguez"
    ],
    "directors": [
        "Lucas Santa Ana"
    ],
    "writers": [
        "Lucas Santa Ana",
        "Nicolás Zamorano"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "Argentina"
    ],
    "languages": [
        "Spanish"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Sombracine Producciones"
}