Skip to content

My clone of the IMDB movie database website using OMDB API

Notifications You must be signed in to change notification settings

dmilojkovic76/MyIMDB_clone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 

Repository files navigation

MyIMDb Clone

My clone of the popular IMDb movie database website using OMDb API.

There are more than one separate project inside:

  • omdb_vanilla_js - The version using only vanilla JavaScript and OMDb
  • omdb_vue - This version relies on VUE.js and OMDb
  • omdb_react - This is React version with OBDb API of the above

For OMDb, use this link to get the API KEY

All data requests go to: http://www.omdbapi.com/?apikey=[yourkey]&

There are two (2) types of requests that can be made to the API:

  • By ID (i) or Title (t) - where parameters i or t must be set to IMDB ID or Movie title respectively.
  • By Search (s) - where parameter s must me set to a term to search for.

The return value asked for can be filtered by:

  • type : movie, series or episode
  • y : set this to year of release
  • plot : short or full - in case if i or t parametars were used
  • page : which page to return 1..100, defaults to 1 - in case if s parameter was used