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!
Get all restaurants
fetch('https://fakerestaurantapi.runasp.net/api/Restaurant')
.then(res=>res.json())
.then(json=>console.log(json))
[
{
restaurantID: 26,
restaurantName: ".....",
address: ".....",
type: ".....",
parkingLot: ......
},
{
restaurantID: 25,
restaurantName: ".....",
address: ".....",
type: ".....",
parkingLot: ......
}
]
Filter by category
fetch('https://fakerestaurantapi.runasp.net/api/Restaurant?category=Parsi Cuisine')
.then(res=>res.json())
.then(json=>console.log(json))
[
{
restaurantID: 16,
restaurantName: ".....",
address: ".....",
type: "Parsi Cuisine",
parkingLot: ......
}
]
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.
[
{
"restaurantID": 1,
"restaurantName": "Paradise Biryani",
"address": "Hyderabad, Secunderabad, Telangana",
"type": "Biryani",
"parkingLot": true
}
]
Get Restaurant by id
fetch('https://fakerestaurantapi.runasp.net/api/Restaurant/4')
.then(res=>res.json())
.then(json=>console.log(json))
[
{
restaurantID: 4,
restaurantName: ".....",
address: ".....",
type: "Parsi Cuisine",
parkingLot: ......
}
]
Get Restaurant menu
fetch('https://fakerestaurantapi.runasp.net/api/Restaurant/5/menu')
.then(res=>res.json())
.then(json=>console.log(json))
[
{
itemID: 91,
itemName: "Haleem",
itemDescription: "Rich and creamy stew made with lentils, wheat, and slow-cooked meat.",
itemPrice: 220,
restaurantName: "Pista House",
restaurantID: 5,
imageUrl: "https://fakerestaurantapi.runasp.net/images/haleem.jpg"
},
{
itemID: 92,
itemName: "Mutton Biryani",
itemDescription: "Signature biryani with perfectly cooked mutton.",
itemPrice: 350,
restaurantName: "Pista House",
restaurantID: 5,
imageUrl: "https://fakerestaurantapi.runasp.net/images/mutton biryani.jpg"
}
.......
]
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.
[
{
itemID: 92,
itemName: "Mutton Biryani",
itemDescription: "Signature biryani with perfectly cooked mutton.",
itemPrice: 350,
restaurantName: "Pista House",
restaurantID: 5,
imageUrl: "https://fakerestaurantapi.runasp.net/images/mutton biryani.jpg"
}
{
itemID: 91,
itemName: "Haleem",
itemDescription: "Rich and creamy stew made with lentils, wheat, and slow-cooked meat.",
itemPrice: 220,
restaurantName: "Pista House",
restaurantID: 5,
imageUrl: "https://fakerestaurantapi.runasp.net/images/haleem.jpg"
},
.......
]
Get all items
fetch('https://fakerestaurantapi.runasp.net/api/Restaurant/items')
.then(res=>res.json())
.then(json=>console.log(json))
[
{
itemID: 91,
itemName: '.....',
itemDescription: '......',
itemPrice: .....,
restaurantName: '.....',
restaurantID: .....,
imageUrl: '.....'
},
{
itemID: 92,
itemName: '.....',
itemDescription: '......',
itemPrice: .....,
restaurantName: '.....',
restaurantID: .....,
imageUrl: '.....'
}
.......
]
Search items by item name
fetch('https://fakerestaurantapi.runasp.net/api/Restaurant/items?ItemName=fish')
.then(res=>res.json())
.then(json=>console.log(json))
[
{
itemID: 14,
itemName: 'Fish Amritsari',
itemDescription: '......',
itemPrice: .....,
restaurantName: '.....',
restaurantID: .....,
imageUrl: '.....'
},
{
itemID: 47,
itemName: 'Fish Curry',
itemDescription: '......',
itemPrice: .....,
restaurantName: '.....',
restaurantID: .....,
imageUrl: '.....'
}
.......
]
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.
[
{
itemID: 26,
itemName: '.....',
itemDescription: '......',
itemPrice: 40,
restaurantName: '.....',
restaurantID: .....,
imageUrl: '.....'
},
{
itemID: 80,
itemName: '.....',
itemDescription: '......',
itemPrice: 60,
restaurantName: '.....',
restaurantID: .....,
imageUrl: '.....'
}
.......
]
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.
{
restaurantID: ....,
restaurantName: ".....",
address: ".....",
type: ".....",
parkingLot: ......
}
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.
{
itemID: .....,
itemName: ".....",
itemDescription: ".....",
itemPrice: .....,
restaurant: {....},
restaurantID: .....,
imageUrl: "....."
}
Get users
fetch('https://fakerestaurantapi.runasp.net/api/User')
.then(res=>res.json())
.then(json=>console.log(json))
[
{
"userEmail": "tech@example.com",
"password": "let's go",
"usercode": "cbc4ecf6-7eda-47e7-bbae-de84be9c796c"
},
{
"userEmail": "bachelor@example.com",
"password": "keep consistency",
"usercode": "dbc3ecf6-7eda-47e7-bbae-de87be9c796c"
}
]
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.
{
usercode: "cbc4ecf6-7eda-47e7-bbae-de84be9c796c"
}
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))
{
"userEmail": "user@bachelor.com",
"password": "sonicmaster",
"usercode": "6f3d1852-aecd-4224-8898-8507a541bc52"
}
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.
{
message: "User Data Deleted"
}
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.
{
"userEmail": "user@bachelor.com",
"password": "string",
"usercode": "6f3d1852-aecd-4224-8898-8507a541bc52"
}
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).
[
{
masterID: 4,
userID: ".....",
usercode: ".....",
restaurantID: 1,
grandtotal: 2750
},
{
masterID: 6,
userID: ".....",
usercode: ".....",
restaurantID: 1,
grandtotal: 2750
}
]
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.
[
{
orderID: 3,
user: {.....},
userID: ".....",
itemName: ".....",
quantity: .....,
itemPrice: .....,
totalPrice: .....,
masterID: .....
},
{
orderID: 4,
user: {.....},
userID: ".....",
itemName: ".....",
quantity: .....,
itemPrice: .....,
totalPrice: .....,
masterID: .....
},
......
]
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.
{
fullorder: [
{
orderID: 9,
user: {.....},
userID: "tech@example.com",
itemName: "Kofta Curry",
quantity: 2,
itemPrice: 300,
totalPrice: 600,
masterID: 8
},
{
orderID: 10,
user: {.....},
userID: "tech@example.com",
itemName: "Sheer Korma",
quantity: 2,
itemPrice: 150,
totalPrice: 300,
masterID: 8
}
],
grandTotal: 900
}
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))
{
message: "Master order Deleted",
orderexits: [
{
masterID: 8,
user: {.....},
userID: "tech@example.com",
restaurant: {.....},
restaurantID: 2,
grandTotal: 600
}
],
singleorders: [
{
orderID: 9,
user: {.....},
userID: "tech@example.com",
itemName: "Kofta Curry",
quantity: 2,
itemPrice: 300,
totalPrice: 600,
masterID: 8
}
]
}
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))
{
message: "Order Deleted",
orderexits: {
orderID: 9,
user: {.....},
userID: "tech@example.com",
itemName: "Kofta Curry",
quantity: 2,
itemPrice: 300,
totalPrice: 600,
masterID: 8
}
}