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

{
    "id": 22897,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/22897?format=api",
    "title": "Carne",
    "original_title": "Flesh",
    "year": 1932,
    "date_published": "1932-12-08",
    "duration": 96,
    "description": "Gifted German wrestler Polokai falls in love with ex-con Laura, who persuades him to emigrate to America and gets him involved with crooked promoters.",
    "long_description": "Laura Nash is an ex-con who is befriended by Polakai, a waiter who is also a wrestler. Even though Polakai is kind to her, she pines for Nick, her old partner in crime. When she gets Nick out of jail, she tells him that she is pregnant and he leaves for America. Laura then marries Polakai, who adores her, and he becomes the wrestling champion of Germany. Laura makes Polakai move to America where she finds Nick and he becomes his manager. Polakai wants to wrestle fairly, but Nick and Joe are both crooked and are only in it for the money. Polakai does not know that Laura still desires Nick.",
    "avg_vote": "6.5",
    "imdb_score": "6.5",
    "votes": 507,
    "metascore": null,
    "budget": 480000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 14,
    "reviews_from_critics": 10,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNDg4MTc1NTktNGI5My00NTg1LTlhNmUtOGQ4MzcyMDljZThiXkEyXkFqcGdeQXVyMTk2MzI2Ng@@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Edward Brophy",
        "Greta Meyer",
        "Herman Bing",
        "Jean Hersholt",
        "John Miljan",
        "Karen Morley",
        "Ricardo Cortez",
        "Vince Barnett",
        "Wallace Beery"
    ],
    "directors": [
        "John Ford"
    ],
    "writers": [
        "Edmund Goulding",
        "Leonard Praskins"
    ],
    "genres": [
        "Drama",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English",
        "German"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Metro-Goldwyn-Mayer (MGM)"
}