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

{
    "id": 17004,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/17004?format=api",
    "title": "It's the Old Army Game",
    "original_title": "It's the Old Army Game",
    "year": 1926,
    "date_published": "1926-07-11",
    "duration": 70,
    "description": "Druggist Elmer Prettywillie is sleeping. A woman rings the night bell only to buy a two-cent stamp. Then garbage collectors waken him. Next it's firemen on a false alarm. And then a real fire.",
    "long_description": "Elmer Pettywillie is the owner of a small drug store in Florida, and Mildred Marshall is his clerk. Business is slow until George Delevan leases space in the store to sell New York real estate. Business is good, especially for George, but the sheriff comes looking for him and he departs the premises for places unknown. Elmer feels that he has been an unknowing accomplice in a con-game, and he heads for New York in his old Ford. But he heads in the wrong direction, gets lost a few times, gives up and starts back to his drugstore. Many townsmen are rushing toward him as he drives up the street, but they are running to congratulate him as George as returned bearing profits for all the local investors. All is well, other than Elmer ending up as a very reluctant fourth-party in a double-wedding ceremony.",
    "avg_vote": "6.4",
    "imdb_score": "6.4",
    "votes": 246,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 10,
    "reviews_from_critics": 4,
    "image_url": "https://m.media-amazon.com/images/M/MV5BZGYxYzM3ODYtMTk1MC00ZGYzLTg4MGUtZjMyZWFkODkyNzU2XkEyXkFqcGdeQXVyODI1OTk4MTQ@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Blanche Ring",
        "George Currie",
        "Jack Luden",
        "Josephine Dunn",
        "Louise Brooks",
        "Mary Foy",
        "Mickey Bennett",
        "W.C. Fields",
        "William Gaxton"
    ],
    "directors": [
        "A. Edward Sutherland"
    ],
    "writers": [
        "J.P. McEvoy",
        "W.C. Fields"
    ],
    "genres": [
        "Adventure",
        "Comedy",
        "Romance"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Paramount Pictures"
}