PHPackages                             fw4/skarabee-weblink - 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. fw4/skarabee-weblink

ActiveLibrary[API Development](/categories/api)

fw4/skarabee-weblink
====================

PHP library for implementing the Skarabee Weblink

v1.5.0(2w ago)1439MITPHPPHP ^7.4|^8.0CI passing

Since Jun 7Pushed 1y ago3 watchersCompare

[ Source](https://github.com/fw4-bvba/skarabee-weblink)[ Packagist](https://packagist.org/packages/fw4/skarabee-weblink)[ RSS](/packages/fw4-skarabee-weblink/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (5)Dependencies (10)Versions (19)Used By (0)

Skarabee Weblink
================

[](#skarabee-weblink)

PHP client for the [Skarabee](https://www.skarabee.com) Weblink. For detailed information about the available endpoints and parameters, refer to the [official documentation](http://weblink.skarabee.com/v36/weblink.asmx).

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

[](#installation)

`composer require fw4/skarabee-weblink`

Usage
-----

[](#usage)

```
use Skarabee\Weblink\Client;

$client = new Client('username', 'password');
```

### Fetching a list of publications

[](#fetching-a-list-of-publications)

Use the `getPublicationSummaries` method to get a list of published properties.

```
$publications = $client->getPublicationSummaries();
```

It's possible to filter the list by change/creation date, type of property, and/or shared status.

```
use Skarabee\Weblink\Enums\PropertyType;

$modified_since = new DateTime('2021-01-01 12:00:00');
$property_types = [
    PropertyType::Transaction,
    PropertyType::Project,
];
$exclude_shared = true;

$publications = $client->getPublicationSummaries($modified_since, $property_types, $exclude_shared);
```

### Getting details about a publication

[](#getting-details-about-a-publication)

Use the `getPublication` method to get the data for a single publication.

```
$publication = $client->getPublication($publication_id);
$bedrooms = $publication->property->numberOfBedrooms;
```

### Fetching a list of published projects

[](#fetching-a-list-of-published-projects)

Use the `getProjectSummaries` method to get a list of published projects.

```
$projects = $client->getProjectSummaries();
```

It's possible to filter the list by change/creation date and/or shared status.

```
$modified_since = new DateTime('2021-01-01 12:00:00');
$exclude_shared = true;

$projects = $client->getProjectSummaries($modified_since, $exclude_shared);
```

### Fetching contact information

[](#fetching-contact-information)

Use the `getContactInfo` method to get a list of contact information of the agent.

```
$info = $client->getContactInfo();
```

### Fetching a list of user accounts

[](#fetching-a-list-of-user-accounts)

Use the `getLogins` method to get a list of user accounts associated with the agent.

```
$users = $client->getLogins();
```

### Sending contact form input

[](#sending-contact-form-input)

Use the `insertContactMes` method to submit contact form input to Skarabee. The method has no return value, but throws an `InvalidContactMeException` on error.

```
$client->insertContactMes([
    'FirstName' => 'string',
    'LastName'  => 'string',
    'Comments'  => 'string',
    'Email'     => 'string',
]);
```

You can wrap multiple requests in a single array to batch submit data.

```
$client->insertContactMes([$contact1, $contact2]);
```

### Updating publication status

[](#updating-publication-status)

Use the `feedback` method to submit updates about the publication's online availability.

```
use Skarabee\Weblink\Enums\FeedbackStatus;

$client->feedback([
    'PublicationID' => $publication_id,
    'Status'        => FeedbackStatus::Available,
    'URL'           => $property_url,
]);
```

You can wrap multiple requests in a single array to batch submit data.

```
$client->feedback([$feedback1, $feedback2]);
```

License
-------

[](#license)

`fw4/skarabee-weblink` is licensed under the MIT License (MIT). Please see [LICENSE](LICENSE) for more information.

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance69

Regular maintenance activity

Popularity17

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 76.7% 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 ~198 days

Total

10

Last Release

19d ago

PHP version history (3 changes)1.0.0PHP ^7.1

1.1.0PHP ^7.1|^8.0

v1.2.0PHP ^7.4|^8.0

### Community

Maintainers

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

---

Top Contributors

[![fyrts](https://avatars.githubusercontent.com/u/5918336?v=4)](https://github.com/fyrts "fyrts (33 commits)")[![DeKerpelLaurent](https://avatars.githubusercontent.com/u/7040102?v=4)](https://github.com/DeKerpelLaurent "DeKerpelLaurent (10 commits)")

---

Tags

apisdkskarabee

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/fw4-skarabee-weblink/health.svg)

```
[![Health](https://phpackages.com/badges/fw4-skarabee-weblink/health.svg)](https://phpackages.com/packages/fw4-skarabee-weblink)
```

###  Alternatives

[deepseek-php/deepseek-php-client

deepseek PHP client is a robust and community-driven PHP client library for seamless integration with the Deepseek API, offering efficient access to advanced AI and data processing capabilities.

47073.9k5](/packages/deepseek-php-deepseek-php-client)[jstolpe/instagram-graph-api-php-sdk

Instagram Graph API PHP SDK

13998.4k2](/packages/jstolpe-instagram-graph-api-php-sdk)[fw4/whise-api

PHP library for implementing the Whise API

1310.1k](/packages/fw4-whise-api)

PHPackages © 2026

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