PHPackages                             pecee/tinder-sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. pecee/tinder-sdk

ActiveLibrary[HTTP &amp; Networking](/categories/http)

pecee/tinder-sdk
================

Easy to use PHP SDK for accessing Tinder data.

1.2.2(8y ago)191.3k6[3 issues](https://github.com/skipperbent/tinder-php-sdk/issues)MITPHP

Since Nov 2Pushed 8y ago5 watchersCompare

[ Source](https://github.com/skipperbent/tinder-php-sdk)[ Packagist](https://packagist.org/packages/pecee/tinder-sdk)[ RSS](/packages/pecee-tinder-sdk/feed)WikiDiscussions master Synced today

READMEChangelog (7)Dependencies (3)Versions (9)Used By (0)

Tinder PHP SDK
==============

[](#tinder-php-sdk)

Easy to use PHP SDK for accessing Tinder data.

**NOTE:**This SDK is unofficial and based on an unofficial API with no or minimal documentation. Please use with caution as functionality might break or be completely removed each time Tinder changes it's API.

WARNING: NOT FOR PRODUCTION USE!

Installation
------------

[](#installation)

Add the latest version of tinder-php-sdk to your project by running

```
composer require pecee/tinder-sdk
```

Examples
--------

[](#examples)

This section contains basic examples on how to use the SDK.

### Getting your Facebook token

[](#getting-your-facebook-token)

The Tinder PHP-SDK requires a valid authorizes Facebook access-token in order to communicate to the Tinder SDK.

Please follow the steps below to obtain your Facebook access-token.

1. Navigate to the following URL.

[https://www.facebook.com/v2.6/dialog/oauth?redirect\_uri=fb464891386855067%3A%2F%2Fauthorize%2F&amp;state=%7B%22challenge%22%3A%22q1WMwhvSfbWHvd8xz5PT6lk6eoA%253D%22%2C%220\_auth\_logger\_id%22%3A%2254783C22-558A-4E54-A1EE-BB9E357CC11F%22%2C%22com.facebook.sdk\_client\_state%22%3Atrue%2C%223\_method%22%3A%22sfvc\_auth%22%7D&amp;scope=user\_birthday%2Cuser\_photos%2Cuser\_education\_history%2Cemail%2Cuser\_relationship\_details%2Cuser\_friends%2Cuser\_work\_history%2Cuser\_likes&amp;response\_type=token%2Csigned\_request&amp;default\_audience=friends&amp;return\_scopes=true&amp;auth\_type=rerequest&amp;client\_id=464891386855067&amp;ret=login&amp;sdk=ios&amp;logger\_id=54783C22-558A-4E54-A1EE-BB9E357CC11F#\_=](https://www.facebook.com/v2.6/dialog/oauth?redirect_uri=fb464891386855067%3A%2F%2Fauthorize%2F&state=%7B%22challenge%22%3A%22q1WMwhvSfbWHvd8xz5PT6lk6eoA%253D%22%2C%220_auth_logger_id%22%3A%2254783C22-558A-4E54-A1EE-BB9E357CC11F%22%2C%22com.facebook.sdk_client_state%22%3Atrue%2C%223_method%22%3A%22sfvc_auth%22%7D&scope=user_birthday%2Cuser_photos%2Cuser_education_history%2Cemail%2Cuser_relationship_details%2Cuser_friends%2Cuser_work_history%2Cuser_likes&response_type=token%2Csigned_request&default_audience=friends&return_scopes=true&auth_type=rerequest&client_id=464891386855067&ret=login&sdk=ios&logger_id=54783C22-558A-4E54-A1EE-BB9E357CC11F#_=)

2. Before clicking "OK" open Chrome Developer Tools and click on the "Network" tab. Make sure to filter by XHR requests.
3. Click "OK" to authorize Tinder in the Facebook dialog.
4. Find your access\_token like shown in the screenshot below:

[![Facebook Access Token](access_token_1.png?raw=true)](access_token_1.png?raw=true)

### Authentication

[](#authentication)

```
$tinder = new \Pecee\Http\Service\Tinder($fbUserId, $fbToken);
```

### Get user info

[](#get-user-info)

```
$tinder->getUser();
```

### Send message

[](#send-message)

```
$tinder->sendMessage($userId, $message);
```

### Report user

[](#report-user)

```
$tinder->reportUser($userId);
```

### Update profile

[](#update-profile)

```
$tinder->updateProfile(array('age_filter_min' => 26, 'gender' => 1, 'age_filter_max' => 18, 'distance_filter' => 14);
```

### Update location

[](#update-location)

```
$tinder->updateLocation($lat, $lon);
```

### Like user

[](#like-user)

```
$tinder->like($userId);
```

### Pass/dislike user

[](#passdislike-user)

```
$tinder->pass($userId);
```

### Get updates

[](#get-updates)

```
$tinder->updates();
```

### Get recommendations

[](#get-recommendations)

Get users and groups (Tinder Social) recommendations.

```
$tinder->recommendations();
```

### Get friends

[](#get-friends)

View friends from Facebook that have a Tinder profile.

```
$tinder->friends();
```

### Get Tinder user by id

[](#get-tinder-user-by-id)

```
$tinder->user($userId);
```

The MIT License (MIT)
---------------------

[](#the-mit-license-mit)

Copyright (c) 2016 Simon Sessingø / tinder-php-sdk

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance17

Infrequent updates — may be unmaintained

Popularity26

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 95.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~107 days

Recently: every ~143 days

Total

7

Last Release

3251d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2dab716ac4ac16ea3e01400efe43853b43821b33b8c601c2c772689d58cebf3c?d=identicon)[sessingo](/maintainers/sessingo)

---

Top Contributors

[![skipperbent](https://avatars.githubusercontent.com/u/634762?v=4)](https://github.com/skipperbent "skipperbent (21 commits)")[![Jleagle](https://avatars.githubusercontent.com/u/381099?v=4)](https://github.com/Jleagle "Jleagle (1 commits)")

---

Tags

apiphpphp-sdksdktindertinder-sdkhttpapiwebsdkrestservicepeceetinder

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/pecee-tinder-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/pecee-tinder-sdk/health.svg)](https://phpackages.com/packages/pecee-tinder-sdk)
```

###  Alternatives

[nategood/httpful

A Readable, Chainable, REST friendly, PHP HTTP Client

1.8k17.7M275](/packages/nategood-httpful)[openapi/openapi-sdk

Minimal and agnostic PHP SDK for Openapi® (https://openapi.com)

161.5k1](/packages/openapi-openapi-sdk)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
