PHPackages                             tioffs/badoo - 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. [API Development](/categories/api)
4. /
5. tioffs/badoo

AbandonedArchivedLibrary[API Development](/categories/api)

tioffs/badoo
============

Unofficial api for badoo social network

v1.01(6y ago)16119↓100%2MITPHPPHP &gt;=7.0

Since Aug 16Pushed 6y ago3 watchersCompare

[ Source](https://github.com/tioffs/badoo)[ Packagist](https://packagist.org/packages/tioffs/badoo)[ Docs](https://github.com/tioffs/badoo)[ RSS](/packages/tioffs-badoo/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (3)Used By (0)

Unofficial Api Social network Badoo [![License](https://camo.githubusercontent.com/0454edaa3b827abffb57f4f57989d39ec55df2ab18be999e3f0b7603314091cc/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f74696f6666732f6261646f6f)](https://github.com/tioffs/badoo/blob/master/LICENSE)
===============================================================================================================================================================================================================================================================================================================

[](#unofficial-api-social-network-badoo-)

[![Downloads](https://camo.githubusercontent.com/8d7985e305c0067d03d6907db3a7c3a1456f9d4f3fa14f65e46d26339b9d4b3f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f646d2f74696f6666732f6261646f6f)](https://packagist.org/packages/tioffs/badoo)[![Telegram](https://camo.githubusercontent.com/a454e4b24d17a3659df1c2e7e93696ec267c1fae2f08d735a669af68c386c136/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f54656c656772616d2d4a6f696e253230436861742d626c75652e7376673f7374796c653d666c6174)](https://t.me/joinchat/C9JmzQ-fc3SKXI0D-9h-uw)

- [Installation](#Installation)
- [Example](#Example)
- Method Api
    - [User Auth](#userAuth)
    - [Load Session](#Load-Session)
    - [Get User](#Get-User)
    - [Search User](#Search-User)
    - [Get City](#Get-City)
    - [Get Visitors](#Get-Visitors)
    - [Like User](#Like-User)
    - [Send Message](#Send-Message)
- [Use Proxy](#Use-Proxy)

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

[](#installation)

**Using Composer:**

```
composer require tioffs/badoo

```

Example
-------

[](#example)

```
require_once __DIR__ . '/vendor/autoload.php';
$badoo = new UnofficialApi\Badoo('login', 'password');
```

Method Api
==========

[](#method-api)

userAuth
--------

[](#userauth)

Log in and get the session

```
$auth = $badoo->userAuth();
#success
['user' => 0123456789]
#error
['error' => 'Authorization false']
```

Load Session
------------

[](#load-session)

Load authorized session

```
$sessionLoad = $badoo->loadSession();
#success
true
#error
false
```

Get User
--------

[](#get-user)

Get user profile information

```
#default return current user profile
$dataUser = $badoo->getUser();
#return user profile
$dataUser = $badoo->getUser(123456789);
#data user array
[
    'age' => 23,  //user age
    'albums' => [], //albums photo array
    'displayed_about_me' => [], //profile about text array
    'dob' => '1996-02-02' // date of birth
    'gender': 1, // 1 - men, 2 - women
    'is_blocked': false,
    'is_deleted': false,
    'is_favourite': false,
    'name' => 'Nikolas', // user name
    'online_status' => 3, // 1 - online, 2,3 - was online time
    'online_status_text' => 'Was online 8 hours ago',
    'photo_count' => 2, //count photo
    'profile_fields' => [], //the information is filled
    'profile_photo' => [], //current user photo
    'user_id' => 123345644 // user id

]
```

Search User
-----------

[](#search-user)

Search for users with a filter

```
$gender = 1; // 1 - men, 2 - women
$AgeStart = 18; // filter start age
$AgeEnd = 60; // filter end age
$count = 150; // count users
$offset = 1; //offset count
$country = ''; //default all city ''; use method getCity
$user = $badoo->searchUser($gender, $AgeStart, $AgeEnd, $count, $offset, $country);
#result data array users
```

Get City
--------

[](#get-city)

Obtaining the data for the subsequent search filter

```
$city = $badoo->getCity('Moscow');
#success
countryId_regionId_cityId
#error
null
```

Get Visitors
------------

[](#get-visitors)

This method returns the list of visitors for the last week

```
$data = $badoo->getVisitors();
#result data array users
```

Like User
---------

[](#like-user)

Liking user profile

```
$userId = 123345644;
$badoo->likeUser($userId);
#success
true
#error
false
```

Send Message
------------

[](#send-message)

Send private message to user

```
$userId = 123345644;
$message = 'test message';
$badoo->sendMessage($userId, $message);
#success
uid message
#error
false
```

Use Proxy
---------

[](#use-proxy)

```
#use proxy http/https
$badoo->setProxy('127.0.0.1', '8080')
#use proxy authorization
$badoo->setProxy('127.0.0.1', '8080', 'login', 'password')
```

---

Made with ♥ from the [@tioffs](https://timlab.ru/)

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~0 days

Total

2

Last Release

2457d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a7a6f75b3666c99714bb807cbb17afee4895f968399f74b6ce83228783e3627d?d=identicon)[tioffs](/maintainers/tioffs)

---

Top Contributors

[![tioffs](https://avatars.githubusercontent.com/u/12449558?v=4)](https://github.com/tioffs "tioffs (3 commits)")

---

Tags

accountingapiapi-clientbadoobadoo-apibadoo-social-networkphpproxyapisocialbadooUnofficialApi

### Embed Badge

![Health badge](/badges/tioffs-badoo/health.svg)

```
[![Health](https://phpackages.com/badges/tioffs-badoo/health.svg)](https://phpackages.com/packages/tioffs-badoo)
```

###  Alternatives

[pgrimaud/instagram-user-feed

This is a scraper to easily fetch any feed and interact with Instagram (like, follow, etc.) without OAuth for PHP.

940657.1k5](/packages/pgrimaud-instagram-user-feed)[messagemedia/messages-sdk

The MessageMedia Messages API provides a number of endpoints for building powerful two-way messaging applications.

13390.6k](/packages/messagemedia-messages-sdk)

PHPackages © 2026

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