Release on 26.07.:

Currently the AreaButler AI-Description API supports the generation of a place or real estate description located at a certain address or coordinates.

The GET request should be sent to fetch the description:

URL: <https://app.areabutler.de/api/open-ai-ext/query?par1=val1&par2=val2…>
Header: KEY: X-Api-Key | VALUE: provided-api-key
Parameters:
  Mandatory:
    address=Schadowstraße 55, Düsseldorf
    // OR
    lat=51.2265311&lng=6.7842183

  Optional:
    // The transportation mode
    // Available options – 'walk', 'bicycle', 'car'
    // Default – 'walk'
    transportMode=walk
    // The maximum distance from the central point
    // From 1 to 2000 meters (if 'm' is used as a unit)
    // Default – 10
    distance=20
    // The distance unit
    // Available options – 'm', 'km', 'min'
    // Default – 'min'
    unit=m
    // The type of a description query
    // Available options - 'loc_desc', 'est_desc', 'loc_est_desc'
    // Default – 'loc_desc'
    queryType=loc_desc
    // The tonality of a description
    // Available options - 'formal_serious', 'easygoing_youthful'
    // Default – 'formal_serious'
    tonality=formal_serious
    // The price in Euros of the renting or sale of a real estate
    price=500000
    // The type of pricing of a real estate
    // Available options – 'rent_monthly_cold', 'rent_monthly_warm', 'sell'
    priceType=rent_monthly_cold
    // The housing area of a real estate in square meters
    housingArea=100
    // The total area of a real estate in square meters
    totalArea=150
		// The energy efficiency ratio of the real estate
    // Available options – 'a', 'b', 'c', 'd', 'e', 'f', 'g'
    energyEfficiency=a
    // The list of furnishing / additional options of a real estate
    // Available options – garden, balcony, basement, guest_rest_rooms,
    // underfloor_heating, garage_parking_space, fitted_kitchen, accessible
    furnishing=balcony,guest_rest_rooms,accessible

The response contains the following body:

{
  "input": {
    "coordinates": {
      "lat": 51.2265311,
	   "lng": 6.7842183
	 }
  },
  "result": "Willkommen in Ihrem neuen Zuhause in der bezaubernden Schadowstraße 55…"
}