One portal for the entire real estate business
Property data, listings, leads, viewings, valuations and commissions - cleanly documented, versioned and usable through a single REST interface.
Property data, listings, leads, viewings, valuations and commissions - cleanly documented, versioned and usable through a single REST interface.
Structured property data becomes a finished listing - including mandatory disclosures from the energy certificate. Either through the API or via a language model behind the Kong AI Gateway.
A single data model for apartments, houses and commercial space. Import and export via a standard property-data feed, media management included.
Search profiles meet properties: inquiries are scored, prioritized and carried straight into viewing appointments.
Three calls are all it takes for the complete path - create, generate, publish.
# 1. Create a property
curl -X POST https://api.realestateagency.example/v1/properties \
-H "apikey: $REAL_ESTATE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"type":"apartment","title":"3-Bedroom Period Home near Riverside Park","address":{"postal_code":"10001","city":"Springfield"}}'
# 2. Generate a listing from the property
curl -X POST https://api.realestateagency.example/v1/listings \
-H "apikey: $REAL_ESTATE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"property_id":"prop_8f2c1a","template_id":"tpl_classic"}'
# 3. Publish the listing to the channels
curl -X POST https://api.realestateagency.example/v1/listings/lst_4d9b/publish \
-H "apikey: $REAL_ESTATE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"channels":["portal","website"]}'
Register, create an application, and generate your first listing in under ten minutes.