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

{
    "id": 10839434,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/10839434?format=api",
    "title": "Socorro, Virei uma Garota!",
    "original_title": "Socorro, Virei uma Garota!",
    "year": 2019,
    "date_published": "2019-08-22",
    "duration": 110,
    "description": "Júlio wanted to be the most popular person in school but ends up getting more than what he wished for.",
    "long_description": "Júlio is a shy boy, virtually invisible to the eyes of his high school classmates. One day, seeing a shooting star, he makes a wish: he wants to be the most popular person in the school. Soon he turns into a girl, Júlia, who is extremely popular. Not knowing how to deal with the female body he has just received, he also has to deal with Melina, the girl he is hopelessly in love with.",
    "avg_vote": "5.8",
    "imdb_score": "5.9",
    "votes": 137,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": 53154,
    "reviews_from_users": 1,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMDFkM2U0MTUtM2Q4ZS00NjU1LTlhNjctNjU5MGY1M2VhNTM1XkEyXkFqcGdeQXVyMTkzODUwNzk@._V1_UY268_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Bruna Altieri",
        "Bruno Gissoni",
        "Camila Mayrink",
        "Giovana Cordeiro",
        "Kayky Brito",
        "Leo Bahia",
        "Lipy Adler",
        "Lua Blanco",
        "Manu Gavassi",
        "Nelson Freitas",
        "Thati Lopes",
        "Vanessa Gerbelli",
        "Victor Lamoglia"
    ],
    "directors": [
        "Leandro Neri"
    ],
    "writers": [
        "Paulo Cursino"
    ],
    "genres": [
        "Comedy",
        "Fantasy"
    ],
    "countries": [
        "Brazil"
    ],
    "languages": [
        "Portuguese"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Camisa Listrada"
}