Skip to content

IQ

POST /iq

Quality score of the property: an overall rating plus the four characteristics it is built from, each expressed on a 0 to 5 scale.

Example Request

curl --location 'https://appraisal.realitycs.it/iq' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer <token>' \
--data-urlencode 'request_uid=a5108688-bf46-4b0a-b6b9-756396769cba'

Request Fields

Field Required Default Description Type Example Notes
request_uid yes Identifier of the request string a5108688-bf46-4b0a-b6b9-756396769cba UUID

JSON keys in the response:

  • punteggio.totale: Overall quality score of the property, from 0 to 5.
  • punteggio.caratteristiche.localizzazione: Score of the location, from 0 to 5.
  • punteggio.caratteristiche.posizione: Score of the position of the unit within the building, from 0 to 5.
  • punteggio.caratteristiche.redditivita: Score of the expected profitability, from 0 to 5.
  • punteggio.caratteristiche.tipologia: Score of the property typology, from 0 to 5.

Example Response

{
  "punteggio": {
    "caratteristiche": {
      "localizzazione": 5.0,
      "posizione": 2.0,
      "redditivita": 5.0,
      "tipologia": 2.5
    },
    "totale": 3.5
  }
}