Simplyrets
SimplyRETS is a real estate data API that provides access to MLS property listings and related real estate information.
- Base URL:
https://api.simplyrets.com - Auth:
bearer(pass your key via theapiKeyinput)
Operations
get_openhouses— GET /openhouses — The SimplyRETS OpenHouses APIget_openhouses_openhousekey— GET /openhouses/{openHouseKey} — Single OpenHouse Endpointget_properties— GET /properties — The SimplyRETS Listings APIget_properties_mlsid— GET /properties/{mlsId} — Single Listing Endpoint
Inputs
apiKey— your simplyrets API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: get_openhouses
apiKey: <your key>
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
apiKey |
string | yes | — | DEPRECATED — bind an API Key credential to the task with credentialName instead. A key pasted here is stored in the workflow definition in clear and appears in every export of it. Still honoured for workflows built before the change. |
operation |
string | yes | — | One of: get_openhouses, get_openhouses_openhousekey, get_properties, get_properties_mlsid |
mlsId |
string | no | — | Path parameter mlsId (required by some operations). |
openHouseKey |
string | no | — | Path parameter openHouseKey (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |