Integration library
Integration

SimplyRETS

Use approved SimplyRETS listing data during a property inquiry.

Description

AIM AI can be configured to search selected MLS listing data or retrieve an approved listing record. Market access, search fields, licensed use, freshness expectations, and human review are confirmed before implementation.

Authentication

  • A SimplyRETS API key is required.
  • Exact MLS access, fields, and approved actions are confirmed during workflow scoping.

Supported Actions (3)

These are the operations this integration can perform after the required credentials and permissions are approved.

  • Listing by address
  • Listing details by ID
  • Search listings

Examples

Use these representative payloads as a technical starting point, then replace the sample values with the approved workflow data.

SimplyRETS - Listing by Address

Representative workflow configuration for SimplyRETS - Listing by Address.

JSON
{
  "automationType": "simplyrets",
  "nodeParams": {
    "action": "listing_by_address",
    "params": {
      "apiKey": "YOUR_SIMPLYRETS_API_KEY",
      "address": "5500 Grand Lake Dr, San Antonio, TX, 78244"
    }
  }
}
SimplyRETS - Listing Details

Representative workflow configuration for SimplyRETS - Listing Details.

JSON
{
  "automationType": "simplyrets",
  "nodeParams": {
    "action": "listing_details",
    "params": {
      "apiKey": "YOUR_SIMPLYRETS_API_KEY",
      "listingId": "LISTING_ID"
    }
  }
}
SimplyRETS - Search Listings

Representative workflow configuration for SimplyRETS - Search Listings.

JSON
{
  "automationType": "simplyrets",
  "nodeParams": {
    "action": "search_listings",
    "params": {
      "apiKey": "YOUR_SIMPLYRETS_API_KEY",
      "city": "San Antonio",
      "state": "TX",
      "type": "Residential"
    }
  }
}