PHPackages                             epse/miep-php-api-client - 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. epse/miep-php-api-client

ActiveLibrary[API Development](/categories/api)

epse/miep-php-api-client
========================

Max-immo External Partners API Client

1.2.0(5y ago)01MITPHPPHP &gt;=7.3

Since Jul 17Pushed 5y agoCompare

[ Source](https://github.com/Epse/miep-public-api)[ Packagist](https://packagist.org/packages/epse/miep-php-api-client)[ Docs](https://github.com/zimmo-be/miep-php-api-client)[ RSS](/packages/epse-miep-php-api-client/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependencies (8)Versions (5)Used By (0)

MIEP Public API Client
======================

[](#miep-public-api-client)

[![Build Status](https://camo.githubusercontent.com/dc2b76ad89585d6578a3dbbd1017d2dd5527cbaca979afeceebc20a4c5ee6943/68747470733a2f2f7472617669732d63692e6f72672f7a696d6d6f2d62652f6d6965702d7075626c69632d6170692e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/zimmo-be/miep-public-api)

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

[](#installation)

Get your preferred [HTTP Client implementation](https://packagist.org/providers/php-http/client-implementation)

install the latest version with

```
$ composer require zimmobe/miep-php-api-client
```

Usage
-----

[](#usage)

```
use MaxImmo\ExternalParties\MiepClient;
use MaxImmo\ExternalParties\Client;
use MaxImmo\ExternalParties\JsonResponseEvaluator;
use Http\Client\HttpClient;
use Http\Message\MessageFactory;

$httpClient = new HttpClient(); // Implementation of Interface
$messageFactory =  new MessageFactory(); // Implementation of Interface
$responseEvaluator = new JsonResponseEvaluator();
$apiClient = new Client($httpClient, $messageFactory, $responseEvaluator);
$miepClient = new MiepClient('client_id', 'client_secret', $apiClient);
```

More info: [PHP-HTTP](http://docs.php-http.org/en/latest/index.html)

### Guzzle example

[](#guzzle-example)

```
use GuzzleHttp\Client as GuzzleClient;
use Http\Adapter\Guzzle6\Client as HttpClient;
use Http\Message\MessageFactory\GuzzleMessageFactory as MessageFactory;
use MaxImmo\ExternalParties\Client;
use MaxImmo\ExternalParties\JsonResponseEvaluator;
use MaxImmo\ExternalParties\MiepClient;

$httpClient = new HttpClient(new GuzzleClient(['base_uri' => 'https://ep.max-immo.be']));
$messageFactory = new MessageFactory();
$responseEvaluator = new JsonResponseEvaluator();
$apiClient = new Client($httpClient, $messageFactory, $responseEvaluator);
$miepClient = new MiepClient('client_id', 'client_secret', $apiClient);
```

### Get list of available Brokers

[](#get-list-of-available-brokers)

```
$miepClient->getBrokers();
```

### Get information for given Broker

[](#get-information-for-given-broker)

```
$miepClient->getInformationForBroker('brokerId');
```

Note: Broker ID is the sub-domain of the broker's MaxImmo URL. This Broker ID will be provided in the list of available brokers discussed earlier.

### Get Real Estate for Broker

[](#get-real-estate-for-broker)

```
$miepClient->getRealEstateListForBroker('brokerId');
```

Note: Broker ID is the sub-domain of the broker's MaxImmo URL. This Broker ID will be provided in the list of available brokers discussed earlier.

### Get property for Broker

[](#get-property-for-broker)

```
$miepClient->getPropertyForBroker('brokerId', 'propertyId');
```

Note:

- brokerId is the sub-domain of the broker's MaxImmo URL. This Broker ID will be provided in the list of available brokers discussed earlier.
- propertyId is the Max-immo property id. This Property ID will be provided in the list of available Real Estate discussed earlier.

### Get project for broker

[](#get-project-for-broker)

```
$miepClient->getProjectForBroker('brokerId', 'projectId');
```

Note:

- brokerId is the sub-domain of the broker's MaxImmo URL. This Broker ID will be provided in the list of available brokers discussed earlier.
- projectId is the Max-immo property id. This Project ID will be provided in the list of available Real Estate discussed earlier.

Versioning
----------

[](#versioning)

This library will follow the classic [semver versioning](http://semver.org/). The master branch will always follow the latest release.

Changes on the core of this library and added features, will be merged back to previous versions on a best effort basis.

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE) for more information.

###  Health Score

25

—

LowBetter than 36% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 79.2% 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 ~437 days

Total

4

Last Release

1952d ago

PHP version history (2 changes)1.0.0PHP ^5.5 || ^7.0

1.2.0PHP &gt;=7.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/10013355?v=4)[Stef Pletinck](/maintainers/epse)[@Epse](https://github.com/Epse)

---

Top Contributors

[![KoenraadM](https://avatars.githubusercontent.com/u/3863041?v=4)](https://github.com/KoenraadM "KoenraadM (19 commits)")[![mathieuzimmo](https://avatars.githubusercontent.com/u/154589783?v=4)](https://github.com/mathieuzimmo "mathieuzimmo (3 commits)")[![Epse](https://avatars.githubusercontent.com/u/10013355?v=4)](https://github.com/Epse "Epse (2 commits)")

---

Tags

apipartnermiepep

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/epse-miep-php-api-client/health.svg)

```
[![Health](https://phpackages.com/badges/epse-miep-php-api-client/health.svg)](https://phpackages.com/packages/epse-miep-php-api-client)
```

###  Alternatives

[apigee/apigee-client-php

Client library for connecting to the Apigee Edge API.

26575.0k3](/packages/apigee-apigee-client-php)[phpro/http-tools

HTTP tools for developing more consistent HTTP implementations.

28146.3k](/packages/phpro-http-tools)[swader/diffbot-php-client

A PHP wrapper for using Diffbot's API

5328.5k](/packages/swader-diffbot-php-client)[pay-now/paynow-php-sdk

PHP client library for accessing Paynow API

19207.3k3](/packages/pay-now-paynow-php-sdk)[dhope0000/lxd

PHP-based API wrapper for LXD REST API.

136.5k](/packages/dhope0000-lxd)[darthsoup/php-whmcs-api

WHMCS API client for PHP

2018.7k4](/packages/darthsoup-php-whmcs-api)

PHPackages © 2026

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