The most delicious API on the web. Just send a request and you'll receive the most mouth watering dish recipe with estimated cooking time and all the necessary ingredients and instructions.
Humans are only capable of remembering a limited number of food recipes.
Break Fast Api solves this problem by memorizing more than 12.000 recipes and making them available at will. The delicious meals are now only one GET request away from you.
For detailed instructions on installation and documentation please check the wiki page:
Sample request:
import requests
r = requests.get("https://breakfastapi.fun/")
data = r.json()
Sample response:
{
"status": 200,
"recipe": {
"id": 11574,
"name": "Devils Steak Sauce Recipe",
"total_duration": 15,
"ingredients": [
"brown sugar",
"tomato sauce",
"raspberry",
"worcestershire sauce",
"hot pepper",
"black pepper",
"vinegar"
],
"directions": "In a saucepan over high heat, blend raspberry jam..."
}
}