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

{
    "id": 15861,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/15861?format=api",
    "title": "La fidanzata di Glomdal",
    "original_title": "Glomdalsbruden",
    "year": 1926,
    "date_published": "1926-01-01",
    "duration": 115,
    "description": "Tore takes over the rundown family farm. Applying his youthful energy, he intends to make it into a big farm like Glomgården on the other side of the river, where beautiful Berit lives. ...",
    "long_description": "Tore takes over the rundown family farm. Applying his youthful energy, he intends to make it into a big farm like Glomgården on the other side of the river, where beautiful Berit lives. Tore falls in love with her, but her father has promised her to rich Gjermund. As her wedding to Gjermund draws near, Berit runs away and seeks refuge with Tore and his parents. She soon falls deathly ill but recovers, asking for, and getting, her father's permission to marry Tore. Jealous Gjermund is determined to prevent their wedding, however, in a dramatic climactic scene playing out around the rushing river.",
    "avg_vote": "6.6",
    "imdb_score": "6.6",
    "votes": 423,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 2,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNjJkYjUxZDUtMjQ3ZS00ZDUwLTkzYjQtZmEwYzgzYTY2ODQzXkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Alfhild Stormoen",
        "Einar Sissener",
        "Einar Tveito",
        "Harald Stormoen",
        "Henny Skjønberg",
        "Julie Lampe",
        "Oscar Larsen",
        "Rasmus Rasmussen",
        "Sofie Reimers",
        "Stub Wiberg",
        "Tove Tellback"
    ],
    "directors": [
        "Carl Theodor Dreyer"
    ],
    "writers": [
        "Carl Theodor Dreyer",
        "Jacob Breda Bull"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "Norway",
        "Sweden"
    ],
    "languages": [
        "Unknown"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Victoria Film"
}