comprehensive and feature rich wrapper for the Tinder API
Note: This is an unofficial project, and I have nothing to do with Tinder nor their API. I take no responsibility for any potential damage, banned accounts or other troubles related to this project!
The following example will demonstrate how easy it is to use this wrapper:
client = TinderClient("X-Auth-Token")
# Like recommended users
for recommendation in client.get_recommendations():
recommendation.like()
print(f"Liked user {recommendation.name}")
# Send a message to all matches
for match in client.load_all_matches():
match.send_message("Hello World")
- completely wrapped Tinder models
- caching
- rate limiting
- intuitive api design
Tinder uses Basic Authentication with UUID strings. To get your token, first login to Tinder in your browser. Then, open the network tab and filter for api.gotinder.com. Choose any GET or POST request and go to the Request Headers. There, you'll find the X-Auth-Token header containing the auth token. Please note: you might need to perform some actions first (for example liking a user) before you see any requests.
pip install rednit.py
- @fbessez and @rtt for their initial reverse engineering back in 2018 and 2014.
- @SnowJuli for their work on the docs and the linting workflow
- @MeerBiene for his support and general ideas
- and many more