fahdi / simplyrets
A PHP library for working with the SimplyRETS API
Installs: 32
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/fahdi/simplyrets
Requires
- php: >=5.3.0
- travis/ex: *
This package is auto-updated.
Last update: 2025-09-29 01:53:42 UTC
README
A PHP library for working with the SimplyRETS API.
Install
Install via Composer.
Usage
Make a method request and pass all params as a single array.
use Fahdi\SimplyRETS; // make a request for multiple listings $response = SimplyRETS::properties([ 'api_key' => 'simplyrets', // required 'api_secret' => 'simplyrets', // required 'status' => 'active', ]); // make a request for a specific listing $response = SimplyRETS::properties([ 'api_key' => 'simplyrets', // required 'api_secret' => 'simplyrets', // required 'mls_id' => '1234', ]);
For more information about available methods and optional search parameters consult the documentation.