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

{
    "id": 20502,
    "url": "https://ocmovies.debinformatique.fr/api/v1/titles/20502?format=api",
    "title": "L'ondata dei forti",
    "original_title": "Tide of Empire",
    "year": 1929,
    "date_published": "1929-03-23",
    "duration": 73,
    "description": "California's gold dicovery in 1848 draws a \"tide of empire\" to the area, which becomes ripe for bandits.",
    "long_description": "The discovery of gold in California in 1848 brings a tide of gold seekers to the area, disrupting the lives of the Guerrero family who have owned nearby Rancho Chico for generations. Among these are Dermod D'Arcy, in partners with a jailer, Bejabbers. At a fiesta where horse races are traditionally run, a stranger notices Dermod's exceptionally fast horse, Pathfinder, and urges him to enter the horse in the race. It becomes a three-horse race, with Don José Guerrero betting his ranch that his horse will win. When Pathfinder wins, Dermod takes the ranch as his share of the winnings and gives it to Don José's daughter, Josephita, with whom he had fallen in love earlier, when he met her. Dermod and Bejabbers leave to search for gold, and the town grows rich as more and more gold is amassed. Meanwhile, a bandit chief, Cannon, met Josephita's brother, Romauldo, and forced him to join the gang, which planned to loot the town of its gold before Wells and Fargo shipped it east. As two of the ...",
    "avg_vote": "6.4",
    "imdb_score": "6.3",
    "votes": 170,
    "metascore": null,
    "budget": null,
    "budget_currency": null,
    "usa_gross_income": null,
    "worldwide_gross_income": null,
    "reviews_from_users": 7,
    "reviews_from_critics": 2,
    "image_url": "https://m.media-amazon.com/images/M/MV5BNGZmMGQwYTEtNzVkNC00OTA0LWE1MTItMGVmY2FiMWYyNTAwXkEyXkFqcGdeQXVyMjIwMjY5MDc@._V1_UX182_CR0,0,182,268_AL_.jpg",
    "actors": [
        "Fred Kohler",
        "George Fawcett",
        "Harry Gribbon",
        "James Bradbury Sr.",
        "Paul Hurst",
        "Renée Adorée",
        "Rosita Delmar",
        "Tom Keene",
        "William Collier Jr."
    ],
    "directors": [
        "Allan Dwan"
    ],
    "writers": [
        "Joseph Farnham",
        "Peter B. Kyne"
    ],
    "genres": [
        "Western"
    ],
    "countries": [
        "USA"
    ],
    "languages": [
        "English"
    ],
    "rated": "Not rated or unkown rating",
    "company": "Cosmopolitan Productions"
}