Skip to content

Instantly share code, notes, and snippets.

View ChristopherProject's full-sized avatar
🏚️
Working from Home

Chris ChristopherProject

🏚️
Working from Home
View GitHub Profile
@ChristopherProject
ChristopherProject / Tinder_unblur_2024.js
Last active May 1, 2024 21:31
Tinder Unblur Script 2024 :)
async function getTeasersByAPI() {
return 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);
}