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

{
    "id": 11958344,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/11958344?format=api",
    "title": "Miyo - Un amore felino",
    "original_title": "Nakitai watashi wa neko wo kaburu",
    "year": 2020,
    "date_published": "2020-06-18",
    "duration": 104,
    "description": "Miyo Sasaki is in love with her classmate Kento Hinode and tries repeatedly to get Kento's attention by transforming into a cat, but at some point, the boundary between herself and the cat becomes ambiguous.",
    "long_description": "Miyo Sasaki is a weird second-year junior high student, who falls in love with her classmate Kento Hinode. Muge tries to make Kento notice her every day, but all in vain. Nevertheless, while carrying a secret she can tell no one, Muge continues to pursue Kento. Muge discovers a magic mask that allows her to transform into a cat, however, there is also a probability that she might never become human again, if she continues using the mask.",
    "avg_vote": "6.7",
    "imdb_score": "6.7",
    "votes": 4525,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 52,
    "reviews_from_critics": 30,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNDI5ODBhYzMtNDc4Yi00NjEwLWJiZWUtMGE2Mzc4MGVjN2E0XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY268_CR3,0,182,268_AL_.jpg",
    "actors": [
        "Ayako Kawasumi",
        "Bob Buchholz",
        "Eri Kitamura",
        "Erika Harlacher",
        "Griffin Burns",
        "Johnny Yong Bosch",
        "Kira Buckland",
        "Minako Kotobuki",
        "Mirai Shida",
        "Motomu Kiyokawa",
        "Natsuki Hanae",
        "Reba Buhr",
        "Rina Kitagawa",
        "Susumu Chiba",
        "Todd Haberkorn"
    ],
    "directors": [
        "Jun'ichi Satô",
        "Tomotaka Shibayama"
    ],
    "writers": [
        "Mari Okada"
    ],
    "genres": [
        "Adventure",
        "Animation",
        "Family"
    ],
    "countries": [
        "Japan"
    ],
    "languages": [
        "Japanese"
    ],
    "rated": "Not rated or unkown rating",
    "company": "BS Fuji"
}