Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/naandalist/api-cooking-recipt
The API include endpoints for searching recipes by various criteria, such as ingredients, cuisine type, cooking time, etc
https://github.com/naandalist/api-cooking-recipt
Last synced: 4 days ago
JSON representation
The API include endpoints for searching recipes by various criteria, such as ingredients, cuisine type, cooking time, etc
- Host: GitHub
- URL: https://github.com/naandalist/api-cooking-recipt
- Owner: Naandalist
- License: mit
- Created: 2022-12-13T03:26:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-13T03:57:11.000Z (about 2 years ago)
- Last Synced: 2024-11-08T04:41:20.108Z (about 2 months ago)
- Language: JavaScript
- Homepage: https://api-cooking-recipt.vercel.app
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Resep Masak
### Documentation
---| Field | Description |
| ------ | ----------- |
| key | is a unique key used to access the next endpoint example ```key : 'resep-sambal-teri'``` |
| page | load a next of data if want to make pagination in your app |
| tag | is unique key of a article category to hit a detail of article|
| limit | set limit of result **note** make sure you set limit below of 10 |### Endpoint Usage
---| Endpoint | Usage | Example |
|----------|-------|---------|
| new recipes | `/api/recipes` | - |
| new recipes by page | `/api/recipes/:page` | `/api/recipes/1` |
| new recipes limit | `/api/recipes-length/?limit=size` | `/api/recipes-length/?limit=5` |
| recipes by category | `/api/category/recipes/:key` | `/api/category/recipes/masakan-hari-raya` |
| recipes category | `/api/category/recipes` | - |
| recipe detail | `/api/recipe/:key` | - |
| search recipes | `/api/search/?q=parameter` | `/api/search/?q=coto` |
| article categorys | `/api/category/article` | - |
| article by category | `/api/category/article/:key` | `/api/category/article/makanan-gaya-hidup` |
| article | `/api/articles/new` | - |
| article detail | `/api/article/:tag/:key` | `/api/article/makanan-gaya-hidup/papeda-dan-masakan-indonesia-timur` |