Does anyone know how to see Tinder likes online for free?

Brainstorm or post a tutorial topic, thanks

There’s a supposed method, but it’s not working for me. Maybe someone has an updated version.

Method broken here.
Note: This can only be done on a PC.

Open Tinder in Chrome (PC).

Click on the “Likes” menu.

(For best results, zoom out to 50%).

Either ‘Inspect’ the page or press F12.

Click on “Console” at the top of the inspected element and paste this code:

async function unblur() { try { const teasers = await fetch(“https://api.gotinder.com/v2/fast-match/teasers”, { headers: { “X-Auth-Token”: localStorage.getItem(“TinderWeb/APIToken”), platform: “android”, }, }) .then((res) => res.json()) .then((res) => res.data.results); const teaserEls = document.querySelectorAll( “.Expand.enterAnimationContainer > div:nth-child(1)” ); teasers.forEach((teaser, index) => { const teaserEl = teaserEls[index]; if (!teaserEl) return; const teaserImage = teaser.user && teaser.user.photos?.[0]?.id ? https://preview.gotinder.com/${teaser.user.\_id}/original\_${teaser.user.photos\[0\].id}.jpeg\ : “”; if (teaserImage) { teaserEl.style.backgroundImage = url(${teaserImage} } }); } catch (error) { console.error(“Error fetching teasers:”, error); } } unblur();

Press “Enter” and enjoy seeing all the people who liked you and those you didn’t like :wink:

3 Likes

It stopped working because Tinder:

Moved “Likes You” from client-side blur → server-side access control

1 Like

Good comment, it’s a shame it changed.