Let's use API

Fake Restaurant API is perfect for any food-related project that requires restaurants, menus, and user data in JSON format. Check out the examples below to see how it works, and feel free to use it in your fantastic projects!

Restaurants

Get all restaurants


      fetch('https://fakerestaurantapi.runasp.net/api/Restaurant')
            .then(res=>res.json())
            .then(json=>console.log(json))
                       

Filter by category


  fetch('https://fakerestaurantapi.runasp.net/api/Restaurant?category=Parsi Cuisine')
        .then(res=>res.json())
        .then(json=>console.log(json))
                   

Filter by address and Restaurant Name


fetch('https://fakerestaurantapi.runasp.net/api/Restaurant?address=hyderabad & name=Paradise Biryani')
    .then(res=>res.json())
    .then(json=>console.log(json))
               

The restaurant's address may be a substring of the provided address. The system should perform a 'contains' operation to retrieve related addresses.

Get Restaurant by id


fetch('https://fakerestaurantapi.runasp.net/api/Restaurant/4')
    .then(res=>res.json())
    .then(json=>console.log(json))
               

Get Restaurant menu


fetch('https://fakerestaurantapi.runasp.net/api/Restaurant/5/menu')
    .then(res=>res.json())
    .then(json=>console.log(json))
               

Sort menu by price


fetch('https://fakerestaurantapi.runasp.net/api/Restaurant/5/menu?sortbyprice=desc')
    .then(res=>res.json())
    .then(json=>console.log(json))
               

The prices are sorted in ascending order when sortbyprice=asc and in descending order when sortbyprice=desc. If sortbyprice is null, the prices are displayed in a random (zigzag) order.

Get all items


fetch('https://fakerestaurantapi.runasp.net/api/Restaurant/items')
    .then(res=>res.json())
    .then(json=>console.log(json))
               

Search items by item name


fetch('https://fakerestaurantapi.runasp.net/api/Restaurant/items?ItemName=fish')
    .then(res=>res.json())
    .then(json=>console.log(json))
               

Sort items by price


fetch('https://fakerestaurantapi.runasp.net/api/Restaurant/items?sortbyprice=asc')
.then(res=>res.json())
.then(json=>console.log(json))
           

The prices are sorted in ascending order when sortbyprice=asc and in descending order when sortbyprice=desc. If sortbyprice is null, the prices are displayed in a random (zigzag) order.

Add a restaurant


fetch('https://fakerestaurantapi.runasp.net/api/Restaurant'{
  method:"POST",
  body:JSON.stringify(
    {
      restaurantName: 'string',
      address: 'string',
      type: 'string',
      parkingLot: true
    }
  )})
  .then(res=>res.json())
  .then(json=>console.log(json))
       

The restaurant information shown here is just an object. It's not saved to the database yet. We're still working on the feature to actually add restaurants. We'll let you know when it's ready.

Add a item to a restaurant menu


fetch('https://fakerestaurantapi.runasp.net/api/Restaurant/{Restaurant_id}/additem'{
  method:"POST",
  body:JSON.stringify(
    {
      itemName: "string",
      itemPrice: decimal,
      itemDescription: "string",
      imageUrl: "string"
    }
  )})
  .then(res=>res.json())
  .then(json=>console.log(json))
       

The restaurant menu shown here is just an object. It's not saved to the database yet. We're still working on the feature to actually add menu from user side. We'll let you know when it's ready.

User

Get users


      fetch('https://fakerestaurantapi.runasp.net/api/User')
            .then(res=>res.json())
            .then(json=>console.log(json))
                       

Get user code


  fetch('https://fakerestaurantapi.runasp.net/api/User/getusercode?UserEmail=tech@example.com&Password=string')
        .then(res=>res.json())
        .then(json=>console.log(json))
                   

The user code is your unique API key. It's required for all operations on this API and grants access to protected resources. Treat it like a password and keep it secure.

Register new user


  fetch('https://fakerestaurantapi.runasp.net/api/User/register'{
    method:"POST",
    body:JSON.stringify(
      {
        userEmail: "user@bachelor.com",
        password: "sonicmaster"
      }
    )})
    .then(res=>res.json())
    .then(json=>console.log(json))
                   

Delete user details


fetch('https://fakerestaurantapi.runasp.net/api/User/{apikey}'{
  method:"DELETE"
  })
  .then(res=>res.json())
  .then(json=>console.log(json))
               

You must replace {api key} in the path route with your actual user code (apikey) to perform any operations. Using the literal {apikey} will not work.

Update user details


fetch('https://fakerestaurantapi.runasp.net/api/User/{apikey}'{
  method:"PUT",
  body:JSON.stringify(NewPassword)
  })
  .then(res=>res.json())
  .then(json=>console.log(json))
               

The API request body should contain a string parameter representing the new password.

Orders

Get orders


fetch('https://fakerestaurantapi.runasp.net/api/Order?apikey={api key}')
      .then(res=>res.json())
      .then(json=>console.log(json))
                 

This API endpoint retrieves all master orders of single user who is associated with above api key. The response includes the total order price, user details, and the user's email address (identified as userid).

Get orders by id


fetch('https://fakerestaurantapi.runasp.net/api/Order/{master_id}?apikey={api key}')
  .then(res=>res.json())
  .then(json=>console.log(json))
             

This API retrieves all individual orders associated with a single, specified master order ID. It returns details for each separate order within that transaction.

Make a order


fetch('https://fakerestaurantapi.runasp.net/api/Order/{resaurant id}/makeorder?apikey={api key}'{
  method:"POST",
  body:JSON.stringify(
    {
      menuDTO: [
        {
          itemName: "Kofta Curry",
          quantity: 2
        },
        {
          itemName: "Sheer Korma",
          quantity: 2
        },
        .....
      ]
    }
  )})
  .then(res=>res.json())
  .then(json=>console.log(json))
       

This API creates a master order (a transaction). menuDTO is a list of individual items (each with its own order ID) that are part of this transaction. All these individual order IDs are then grouped under a single master order ID.

Delete master order


fetch('https://fakerestaurantapi.runasp.net/api/Order/master/{master ID}?apikey={api key}'{
  method:"DELETE"
  })
  .then(res=>res.json())
  .then(json=>console.log(json))
       

Delete single order


fetch('https://fakerestaurantapi.runasp.net/api/Order/{order ID}?apikey={api key}'{
  method:"DELETE"
  })
  .then(res=>res.json())
  .then(json=>console.log(json))