Skip to content

webbrowser11/thanks-giving-recipe-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

thanks-giving-recipe-api

simple api :)

use trough web: (view only)

go to: https://thanks-giving-recipe-api.vercel.app/thanksgivingrecipes

how to use with curl

get:

curl https://thanks-giving-recipe-api.vercel.app/thanksgivingrecipes

add:

curl -X POST https://thanks-giving-recipe-api.vercel.app/thanksgivingrecipes \
  -H "Content-Type: application/json" \
  -d '{
    "name": "YOUR-RECIPE-NAME",
    "ingredients": ["YOUR INGREDIENTS"],
    "steps": ["STEPS FOR YOUR RECIPE"]
  }'

delete:

curl -X DELETE https://your-flask-api.vercel.app/thanksgivingrecipes/best-turkey-gravy

how to use with postman:

get:

in the request bar change it to GET if not already on GET and then enter this: https://thanks-giving-recipe-api.vercel.app/thanksgivingrecipes

add:

in the request bar change GET to POST and enter:

https://thanks-giving-recipe-api.vercel.app/thanksgivingrecipes

for the rest its the same:

"name": "YOUR-RECIPE-NAME",
"ingredients": ["YOUR INGREDIENTS"],
"steps": ["STEPS FOR YOUR RECIPE"]

delete:

in the request bar change GET to DELETE

then enter this:

https://thanks-giving-recipe-api.vercel.app/thanksgivingrecipes/RECIPE-NAME

static website for instructions:

website for usage: