PHPackages                             fw4/omnicasa-cre - 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/omnicasa-cre

ActiveLibrary[API Development](/categories/api)

fw4/omnicasa-cre
================

PHP library for implementing the Omnicasa API for commercial real estate

1.1.0(3y ago)039MITPHPPHP ^7.1|^8.0

Since Feb 8Pushed 3y ago3 watchersCompare

[ Source](https://github.com/fw4-bvba/omnicasa-cre)[ Packagist](https://packagist.org/packages/fw4/omnicasa-cre)[ RSS](/packages/fw4-omnicasa-cre/feed)WikiDiscussions main Synced yesterday

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

Omnicasa CRE API
================

[](#omnicasa-cre-api)

PHP client for the [Omnicasa](https://www.omnicasa.com) API for commercial real estate. For terms of use and API credentials, contact Omnicasa support and refer to the official documentation.

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

[](#installation)

`composer require fw4/omnicasa-cre`

Usage
-----

[](#usage)

```
use OmnicasaCRE\Omnicasa;
use OmnicasaCRE\Enums\Language;

$api = new Omnicasa('your-secret-key', Language::EN);
$properties = $api->getProperties();
```

All endpoints are provided as methods of the Omnicasa class. For more information about available endpoints and response format, refer to the official API documentation.

### Available endpoints

[](#available-endpoints)

Use the following methods to access available endpoints:

```
$api->getProperties($parameters); // Get basic property list
$api->getProperties($parameters, true); // Get detailed property list
$api->getProperty($id, $parameters);
$api->addPropertyVisit($id, $real_client_ip);
$api->getGoals($parameters);
$api->getPropertyTypes($parameters);
$api->getCities($parameters);
$api->registerPerson($parameters);
$api->contactOnMe($parameters);
```

### Pagination

[](#pagination)

Endpoints that retrieve multiple items return a traversable list of objects. Pagination for large lists happens automatically.

```
$properties = $api->getProperties();

// Traversing over the response takes care of pagination in the background
foreach ($properties as $property) {
    echo $property->id . PHP_EOL;
}
```

### Manual pagination

[](#manual-pagination)

For situations where manual pagination is required, a `page` method is provided. Calling this method with both a desired page index (starting at 0), and the amount of items to retrieve per page, returns a traversable list of objects. This list also provides multiple methods for dealing with paging metadata:

- `getPage()` to retrieve the current page index (starting at 0).
- `getPageSize()` to retrieve the maximum amount of items per page.
- `count()` to retrieve the actual amount of items on the current page.
- `getTotalCount()` to retrieve the total amount of items across all pages. This method is currently not available on `activities` endpoints.
- `getPageCount()` to retrieve the total amount of pages. This method is currently not available on `activities` endpoints.

#### Example

[](#example)

```
$page_index = 2;
$items_per_page = 20;

$properties = $api->getProperties();
$page = $properties->page($page_index, $items_per_page);

echo 'Showing ' . $page->count() . ' items out of ' . $page->getTotalCount() . PHP_EOL;
echo 'Page ' . ($page->getPage() + 1) . ' of ' . $page->getPageCount() . PHP_EOL;
foreach ($page as $property) {
    echo $property->id . PHP_EOL;
}
```

License
-------

[](#license)

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

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity60

Established project with proven stability

 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 ~327 days

Total

3

Last Release

1266d ago

PHP version history (2 changes)1.0.0PHP ^7.1

1.1.0PHP ^7.1|^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 (3 commits)")

---

Tags

apisdkomnicasacre

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/fw4-omnicasa-cre/health.svg)

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

###  Alternatives

[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k7.6M74](/packages/openai-php-laravel)[hubspot/api-client

Hubspot API client

23414.2M16](/packages/hubspot-api-client)[mailchimp/transactional

458.9M16](/packages/mailchimp-transactional)[resend/resend-php

Resend PHP library.

564.7M21](/packages/resend-resend-php)[checkout/checkout-sdk-php

Checkout.com SDK for PHP

553.3M7](/packages/checkout-checkout-sdk-php)[mozex/anthropic-laravel

Anthropic PHP for Laravel is a supercharged PHP API client that allows you to interact with the Anthropic API

71226.4k1](/packages/mozex-anthropic-laravel)

PHPackages © 2026

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