Published on

Swiggy Recap

Authors
Food delivery
Photo by Rowan Freeman on Unsplash

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

  1. Fast food
  2. Asian (mostly Chinese)
  3. Bengali
  4. North Indian
  5. South Indian

Restaurants

I frequently ordered from these restaurants.

  1. FreshMenu
  2. Sardarji Londonwaley
  3. Subway
  4. California Burrito
  5. 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.