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

{
    "id": 12745,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/12745?format=api",
    "title": "La terre",
    "original_title": "La terre",
    "year": 1921,
    "date_published": "1926-07-15",
    "duration": 97,
    "description": "As Jean is walking across the countryside in search of work, he helps and befriends a young woman, Françoise, who is having trouble controlling the cow that she is leading. Jean finds work ...",
    "long_description": "As Jean is walking across the countryside in search of work, he helps and befriends a young woman, Françoise, who is having trouble controlling the cow that she is leading. Jean finds work at a local farm, but he soon finds himself caught in the middle of the conflicts in Françoise's family. Her uncle Fouan has just decided to divide everything that he has amongst his two sons and his daughter, hoping that he can then spend the rest of his life at ease. But the details of the division only create bitterness, rivalry, and intrigue.",
    "avg_vote": "6.9",
    "imdb_score": "6.9",
    "votes": 137,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 7,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMTc1NzI3Mjc3N15BMl5BanBnXkFtZTgwNTMxMDgzMzE@._V1_UY268_CR4,0,182,268_AL_.jpg",
    "actors": [
        "Armand Bour",
        "Armand Numès",
        "Berthe Bovy",
        "Emile Desjardins",
        "Germaine Rouer",
        "Jean Hervé",
        "Jeanne Briey",
        "Jeanne Grumbach",
        "Léon Malavier",
        "Max Charlier",
        "René Alexandre",
        "René Hiéronimus",
        "Émile Mylo"
    ],
    "directors": [
        "André Antoine"
    ],
    "writers": [
        "André Antoine",
        "Émile Zola"
    ],
    "genres": [
        "Drama"
    ],
    "countries": [
        "France"
    ],
    "languages": [
        "French"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Pathé Frères"
}