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

{
    "id": 14429,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/14429?format=api",
    "title": "Preferisco l'ascensore",
    "original_title": "Safety Last!",
    "year": 1923,
    "date_published": "1924-12-08",
    "duration": 74,
    "description": "A boy leaves his small country town and heads to the big city to get a job. As soon as he makes it big his sweetheart will join him and marry him. His enthusiasm to get ahead leads to some interesting adventures.",
    "long_description": "In 1922, the country boy Harold says goodbye to his mother and his girlfriend Mildred in the train station and leaves Great Bend expecting to be successful in the big city. Harold promises to Mildred to get married with her as soon as he \"make good\". Harold shares a room with his friend \"Limpy\" Bill and he finally gets a job as salesman in the De Vore Department Store. However, he pawns Bill's phonograph, buys a lavaliere and writes to Mildred telling that he is a manager of De Vore. One day, Harold sees an old friend from Great Bend that is a policeman and when he meets his friend Bill, he asks Bill to push the policeman over him and make him fall down. However Bill pushes the wrong policeman that chases him, but he escapes climbing up a building. Out of the blue, Mildred is convinced by her mother to visit Harold without previous notice and he pretends to be the manager of De Vore. When Harold overhears the general manager telling that he would give one thousand dollars to to anyone...",
    "avg_vote": "8.1",
    "imdb_score": "8.1",
    "votes": 18161,
    "metascore": null,
    "budget": 121000,
    "budget_currency": "USD",
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 91,
    "reviews_from_critics": 93,
    "image_url": "https://m.media-amazon.com/images/M/MV5BMjkyOTg2MzE1MV5BMl5BanBnXkFtZTgwMDUzODYwMjE@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Bill Strother",
        "Harold Lloyd",
        "Mildred Davis",
        "Noah Young",
        "Westcott Clarke"
    ],
    "directors": [
        "Fred C. Newmeyer",
        "Sam Taylor"
    ],
    "writers": [
        "Hal Roach",
        "Sam Taylor"
    ],
    "genres": [
        "Action",
        "Comedy",
        "Thriller"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Hal Roach Studios"
}