Getting database for our API

In this lab, We will use a simple JSON database. The format of the database is as follows: 

"movie": [
    {
      "id": "tt0111161", 
      "rank": "1", 
      "title": "The Shawshank Redemption"
    }
  ]

The complete database is present HERE

To save the database, just copy all the contents to a notepad and save them in .json format.

Importing Data:

I have saved the data in movies.json file.

Discussion

5

0