Created
June 28, 2024 13:34
-
-
Save devfraga/97ef2b4dbf326693c87bb0d581659c42 to your computer and use it in GitHub Desktop.
Fake Api Delivery Youtube
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"restaurants": [ | |
{ | |
"id": "1", | |
"name": "KFC", | |
"image": "https://i.imgur.com/sZ1Jye3.png" | |
}, | |
{ | |
"id": "2", | |
"name": "McDonald's", | |
"image": "https://i.imgur.com/su4iB3p.png" | |
}, | |
{ | |
"id": "3", | |
"name": "Outback", | |
"image": "https://i.imgur.com/jg3GJVN.png" | |
}, | |
{ | |
"id": "4", | |
"name": "Sushi Dev", | |
"image": "https://i.imgur.com/ffYWFBX.png" | |
}, | |
{ | |
"id": "5", | |
"name": "Burguer Grill", | |
"image": "https://i.imgur.com/kmQvG2T.png" | |
}, | |
{ | |
"id": "6", | |
"name": "Marmitas express", | |
"image": "https://i.imgur.com/uXRuDFD.png" | |
} | |
], | |
"foods": [ | |
{ | |
"id": "1", | |
"name": "Frango assado", | |
"price": 39.90, | |
"time": "50-60 min", | |
"delivery": 5.99, | |
"rating": 4.8, | |
"image": "https://i.imgur.com/CEVUdju.png", | |
"restaurantId": "1" | |
}, | |
{ | |
"id": "2", | |
"name": "Marmita fit", | |
"price": 29, | |
"time": "30-40 min", | |
"delivery": 2.99, | |
"rating": 4.9, | |
"image": "https://i.imgur.com/uXRuDFD.png", | |
"restaurantId": "6" | |
}, | |
{ | |
"id": "3", | |
"name": "Burguer Dev", | |
"price": 40, | |
"time": "50-60 min", | |
"delivery": 5.99, | |
"rating": 4.5, | |
"image": "https://i.imgur.com/O5c3lyU.png", | |
"restaurantId": "5" | |
}, | |
{ | |
"id": "4", | |
"name": "Picanha Grill", | |
"price": 36, | |
"time": "50-60 min", | |
"delivery": 5.99, | |
"rating": 4.4, | |
"image": "https://i.imgur.com/0UjG3wk.png", | |
"restaurantId": "3" | |
}, | |
{ | |
"id": "5", | |
"name": "Açai 300ml", | |
"price": 20, | |
"time": "20-30 min", | |
"delivery": 2.99, | |
"rating": 4.4, | |
"image": "https://i.imgur.com/BaUUCkc.png", | |
"restaurantId": "3" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment