pdir / propstack-api
Simple API Integration for Propstack
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/pdir/propstack-api
Requires
- php: >=7.2
- ext-curl: *
- ext-json: *
- guzzlehttp/guzzle: ^6.3
- guzzlehttp/oauth-subscriber: 0.4.*
- psr/cache: ^1.0
Requires (Dev)
- fzaninotto/faker: ^1.9.1
- phpunit/phpunit: ^8.5
- symfony/cache: ^5.1
This package is not auto-updated.
Last update: 2025-09-28 01:54:49 UTC
README
Requirements
PHP: >= 7.2
Extensions: Composer, PHP-JSON
Install
composer:
composer require pdir/propstack-api
Usage
Search for the official API Documentation here.
You need an Api Key - Ask support or visit account settings in Propstack.
Basic
// store keys in .env file or use credentials array $credentials = [ 'apiKey' => 'PROPSTACK_API_KEY', ]; $api = new Pdir\Propstack\Api(); or $api = new Pdir\Propstack\Api($credentials); // get all projects $projects = $api->getProjects(); // get all saved queries $savedQueries = $api->getSavedQueries();