Food/
1{
2 "name": "Spaghetti Bolognese",
3 "description": "A classic Italian dish made with spaghetti and a tomato-based meat sauce.",
4 "ingredients": [
5 {
6 "name": "spaghetti",
7 "quantity": "1 lb"
8 },
9 {
10 "name": "ground beef",
11 "quantity": "1 lb"
12 },
13 {
14 "name": "canned crushed tomatoes",
15 "quantity": "28 oz"
16 },
17 {
18 "name": "tomato paste",
19 "quantity": "6 oz"
20 },
21 {
22 "name": "onion",
23 "quantity": "1"
24 },
25 {
26 "name": "garlic",
27 "quantity": "3 cloves"
28 },
29 {
30 "name": "red wine",
31 "quantity": "1/2 cup"
32 },
33 {
34 "name": "olive oil",
35 "quantity": "2 tbsp"
36 },
37 {
38 "name": "dried basil",
39 "quantity": "1 tsp"
40 },
41 {
42 "name": "salt",
43 "quantity": "1 tsp"
44 },
45 {
46 "name": "black pepper",
47 "quantity": "1/2 tsp"
48 }
49 ],
50 "steps": [
51 "Cook the spaghetti according to package instructions.",
52 "In a large saucepan, heat the olive oil over medium heat.",
53 "Add the onion and garlic and cook until softened.",
54 "Add the ground beef and cook until browned.",
55 "Add the canned tomatoes, tomato paste, red wine, basil, salt, and pepper.",
56 "Simmer for 20-30 minutes, stirring occasionally.",
57 "Serve the sauce over the cooked spaghetti."
58 ],
59 "servings": 4,
60 "prep_time": "10 minutes",
61 "cook_time": "30 minutes",
62 "total_time": "40 minutes"
63}
This page provides an example JSON response for a food recipe API, with details on how to use the API to retrieve recipe data. The API includes information on ingredients, cooking time, and instructions.
The page also explains the structure of the JSON response and how to parse it for use in your own application. By exploring the example provided, you can gain a better understanding of how the API works and how to integrate it into your own project.
Developed by
Episyche Technologies
Copyright © 2022-2024 Episyche Technologies. All rights reserved.
Based on JSON CRACK, by AykutSarac