Skip to content

Latest commit

 

History

History
53 lines (47 loc) · 1.5 KB

README.md

File metadata and controls

53 lines (47 loc) · 1.5 KB

FakeBulk - REST API

🛠️ built using JSON-Server x Heroku

Base URL : 🔗 https://fakebulk-api.herokuapp.com/

Endpoints available :

/users/ - Methods allowed (GET, POST, PUT, DELETE, PATCH, OPTIONS)
Sample data
[
  {
    "id": 1,
    "first_name": "Simon",
    "last_name": "Jones",
    "email": "simon@xyz.com",
    "gender": "Male"
  }
]

/products/ - Methods allowed (GET, POST, PUT, DELETE, PATCH, OPTIONS)
Sample data
[
 {
  "title": "Brown eggs",
  "type": "dairy",
  "description": "Raw organic brown eggs in a basket",
  "filename": "0.jpg",
  "height": 600,
  "width": 400,
  "price": 28.1,
  "rating": 4
 }
]

/foods/ - Methods allowed (GET, POST, PUT, DELETE, PATCH, OPTIONS)
Sample data
[
  {
    "restaurant":"Panera",
    "foodItems":[
    {"foodName":"Modern Greek Salad with Quinoa", "foodType":"Salad", "calories":530, "carbs":29, "sideItem":true, "dressingItem":true },
    ]
  }
]


Developed by - @th3qui85ly