High IQ Hinge stats thread

greyrock45

greyrock45

Iron
Joined
Aug 6, 2022
Posts
50
Reputation
32
In this thread i will explain how to request, sum up and visualize your Hinge stats (might also work with other dating apps that are part of Match Group).

Step 1: Requesting Hinge stats
Go to Hinge settings and click "Download my Data" (quite far down). After a couple days you will get an Email notifying you that you can now download your Hinge Data for the next 48 hours.

Step 2: Summing up the data
The HTML and .json files aren't very helpful (unless you want to manually count how many likes etc. you have sent)
For this i have created the python script below - just open vscode (its a free program), open a new text file, copy paste the following code and save the file. After that all that's left is to right-click the "matches.json" in the folder you downloaded from Hinge, click "Copy file path" and replace the placeholder path i have used (on line 2 of the script as shown by the blue arrow in the attached image, make sure to use apostrophe ' instead of quotation marks "). Lastly, run the script (by pressing the triangle in the top right corner) - which will give you the total numbers of likes, matches, chats and blocks (as shown by the red circle). Block includes every time when you send a like and it gets removed by the girl.

import json
with open(r'C:\Users\User\Downloads\name_hinge_data_export\export\matches.json', encoding='utf-8') as f:
data = json.load(f)
matches = 0
likes = 0
chats = 0
blocks = 0
def count_likes(like_list):
count = 0
for like in like_list:
count += 1
if 'like' in like:
count += count_likes(like['like'])
return count
for entry in data:
if 'match' in entry:
matches += len(entry['match'])
if 'like' in entry:
likes += count_likes(entry['like'])
if 'chats' in entry:
chats += len(entry['chats'])
if 'block' in entry:
blocks += len(entry['block'])
print(f"Matches: {matches}")
print(f"Likes: {likes}")
print(f"Chats: {chats}")
print(f"Blocks: {blocks}")

Screenshot 2025 06 18 184303


Optional Step: Make a chart to show your stats
Go to the following website and switch out the numbers in the input window. (see second attached picture)


Screenshot 2025 06 18 185805
 
  • +1
Reactions: cute and loyolaxavvierretard
good stuff except no hinge in my country
 
  • So Sad
  • +1
Reactions: greyrock45 and loyolaxavvierretard
No Hinge for your location
 
no hinge stats for your face
 
  • JFL
  • WTF
Reactions: greyrock45, Mighty_One and aids

Similar threads

Jason Voorhees
Replies
47
Views
673
e1488shciozl
e1488shciozl
menas
Replies
204
Views
24K
copercel123
copercel123
P
Replies
346
Views
16K
einzigartig
einzigartig
leF
Replies
70
Views
4K
heinz_guderian
heinz_guderian

Users who are viewing this thread

Back
Top