Skip to content

3 Ways to Check Total Amount Spent on Swiggy & Zomato

Are you curious about how much money you have spent on Swiggy and Zomato to date? Well, there are certain Chrome extensions and scripts that let you keep track of your online food spending habits. In this article, let us see different ways to check the total amount spent on Swiggy and Zomato so far using Chrome, Microsoft Edge, and Brave browser.

Related | 2 Ways to Check Total Amount You Have Spent on Amazon

How to Check Total Amount Spent on Swiggy

Using Swiggy Spending Calculator Extension

Swiggy Spending Calculator is a handy Chrome extension that automatically calculates your Swiggy spending. All you need to do is install the extension and use it on the Swiggy order page, as shown below:


Step 1: Visit the Swiggy Spending Calculator extension page on Chrome Web Store.

Step 2: Click on Add to Chrome > Add Extension.

Step 3: Now, open swiggy.com in a new tab.

Step 4: Log in with your mobile number and OTP.

Step 5: Once logged in, click on your profile name at the top right corner. You will land on the order page.

Step 6: Click the extension icon from the menu in the toolbar. Hit Calculate Total Spending.

Within seconds, the extension will calculate and show you the total amount you have spent so far on Swiggy orders.

Additionally, it will also show your top five ordered dishes on the platform.

Using Inspect Element Script

Thanks to this script on GitHub, you can calculate the total money you have spent on ordering from Swiggy using inspect element. Here’s how it works:

Step 1: Open swiggy.com in your browser.

Step 2: Log in to your account, and click your name at the top right to land on the order history page.

Step 3: Scroll down and click on Show Older Orders. Keep doing this until all orders are on the page.

Step 4: Right-click anywhere on the empty screen and click on Inspect.

Total Spending on Swiggy via Script

Step 5: In the Inspect window, click on Console on the top menu.

Step 6: At the bottom of the code, copy and paste the following script:

restauratnt_name_node_list = document.getElementsByClassName(‘_3h4gz’);
amount_node_list = document.getElementsByClassName(‘_3Hghg’);
order_details_node_list = document.getElementsByClassName(‘_2uT6l’);
order_name_node_list = document.getElementsByClassName(‘nRCg_’);

amount_regex = /\d+.\d*/g;
total_amount = 0.0
console.log(“restaurant_name,order_name,order_details,current_amount”);
for (let i = 0; i < amount_node_list.length; i++) {
current_amount = amount_node_list[i].innerHTML;
restaurant_name = restauratnt_name_node_list[i].innerHTML;
order_details = order_details_node_list[i].innerHTML;
order_name = order_name_node_list[i].innerHTML;
console.log(restaurant_name,”,”,order_name,”,”,order_details,”,”,current_amount);
if (current_amount.match(amount_regex)) {
amount = parseFloat(current_amount.match(amount_regex)[0])
total_amount += amount;
}
}
console.log(“Total amount spent on Swiggy so far is INR “, total_amount);

Total Spending on Swiggy via Script

Step 6: Finally, press Enter.

Total Spending on Swiggy via Script

It will show you the total amount spent on Swiggy at the bottom.

How to Check Total Amount Spent on Zomato

Using Zomato Spending Calculator Extension

Similar to Swiggy, there’s a dedicated extension called Zomato Spending Calculator which tells you the money you have spent on ordering food till now. However, you don’t have to open the order page; just log in on the Zomato website and use the extension, as shown below:

Step 1: Visit the Zomato Spending Calculator extension page on Chrome Web Store.

Step 2: Click on Add to Chrome > Add Extension.

Check Total Amount Spent Zomato

Step 3: Now, visit zomato.com on a new tab page.

Step 4: Sign in with your account. Stay on the Zomato home page- you do not have to open the order history.

Step 5: Now, open the extension menu and click the extension icon.

Step 6: Wait for it to calculate and show you the total amount you have spent on the Zomato app so far.

Check Total Amount Spent Zomato

You can also tap Show Options to sort your total spending for the particular month or year.

Check Total Amount Spent Zomato

There’s an alternative inspect element script for Zomato as well. However, it no longer seems to be working with Zomato’s current layout of showing order history in pages instead of a single page like Swiggy.

Wrapping Up

These were working methods to find your total amount spent on Swiggy and Zomato online food orders. I hope this helps you get an idea of your spending habits and act accordingly. We’ll add more methods as and when they’re available. Till then, stay tuned.

Related: