Soupabase is a fast and free REST API for to use whenever you need real-pseudo data for your front end application without running any backend code. Featuring all data types in responses.
fetch('https://cloud-app.soupabase.workers.dev/soup/1')
.then(res=>res.json())
.then(json=>console.log(json))
GET | /soup |
GET | /soup?limit=5 |
GET | /soup/1 |
GET | /soup/category/all |
GET | /soup/category/vegetarian |
POST | /soup |
PUT | /soup/1 |
PATCH | /soup/1 |
DELETE | /soup/1 |
Note that POST, PUT, PATCH and DELETE are simulated and won't affect the database
id: | number |
name: | string |
ingredients: | string[] |
price: | number |
hot: | boolean |
description: | string |
imgUrl: | string |
origin: | object |
category: | string |
nullValue: | null |