- Published on
Swiggy Recap
- Authors
- Name
- Srinjoy Santra
- @s_srinjoy
After checking out my Spotify Wrapped, I wondered when will Swiggy recap drop by. I stumbled upon Swiggy's order page and scraped the data from their API.
Here's what I found
Cuisines
As per data, I explored around 40 cuisines. The number is definitely inflated as there's lots of overlap and lacks decent standardisation.
e.g. Desserts, Snacks, Burgers, Pizzas, Fast food are counted as different cuisines.
My top cuisines are
- Fast food
- Asian (mostly Chinese)
- Bengali
- North Indian
- South Indian
Restaurants
I frequently ordered from these restaurants.
- FreshMenu
- Sardarji Londonwaley
- Subway
- California Burrito
- Peetuk
Seconds hungry
This was a fun insight to checkout. Basically its a summation of each orders' time difference between order placed time and the delivered time.
Was able to play around the JS reduce()
method.
let secondsHungry = orders.reduce((ac,cv) => ac + parseInt(cv.delivery_time_in_seconds), 0)
console.log("seconds hungry", secondsHungry)
It came around 101830 seconds. Which is around 1.17 days for the entire years' orders!
Money spent
My average order price was around ₹400.
I am not okay with sharing the total amount I spent in food deliveries. Well, that reminds me I have to make it a habit of eating more healthy home-made food next year.