Skip to content

Request Info

GET /info/<request_uid>

Reads back a stored request: the input submitted to the valuation call and the valuation output produced for it.

Example Request

curl --location 'https://appraisal.realitycs.it/info/a5108688-bf46-4b0a-b6b9-756396769cba' \
--header 'Authorization: Bearer <token>'

Request Fields

Field Required Default Description Type Example Notes
request_uid yes Identifier of the request, passed as a path parameter string a5108688-bf46-4b0a-b6b9-756396769cba UUID

Note

This is the only endpoint of the group using GET: the identifier travels in the URL and there is no request body.

JSON keys in the response:

  • request_uid: Identifier of the request.
  • data: Date the request was created, as an HTTP date string.
  • input: Payload originally submitted to the valuation call, normalised by the service.
  • output: Valuation result stored for the request. The blocks it contains depend on the output requested at creation time.

output.VALORE

  • avm: Estimated market value of the property, in €.
  • avm_dettaglio.avm_min / avm_dettaglio.avm_max: Lower and upper bound of the estimate, in €.
  • avm_dettaglio.avm_mq: Estimated unit value, in €/m².
  • avm_dettaglio.avm_idx: Confidence index of the estimate.
  • avm_dettaglio.avm_ordinario: Whether the estimate refers to an ordinary property.
  • avm_dettaglio.avm_tipo: Type of estimate, such as predetto.
  • superficie: Commercial surface used for the estimate, in m².
  • superficie_interna: Internal surface, in m².
  • superficie_esterna: External surface, in m².

output.OFFERTA

  • prezzo: Suggested asking price, in €.
  • prezzo_dettaglio.prezzo_min / prezzo_dettaglio.prezzo_max: Lower and upper bound of the suggested asking price, in €.
  • prezzo_dettaglio.prezzo_mq: Suggested asking unit price, in €/m².

Example Response

{
  "data": "Wed, 29 Jul 2026 00:00:00 GMT",
  "input": {
    "anno": 1960,
    "ascensore": 1,
    "balcone_mq": 0,
    "classe_energetica": 7,
    "contratto": 1,
    "garage_mq": 0,
    "giardino_mq": 0,
    "indirizzo": "Piazza Riccardo Wagner, 9 Milano",
    "latitudine": "45.4775832",
    "locali": 4,
    "longitudine": "9.1858904",
    "output": "offerta",
    "piano": 3,
    "riscaldamento": 1,
    "stato": 2,
    "sup_interna": 90,
    "superficie_mq": 90.0,
    "tipologia_id": 1
  },
  "output": {
    "OFFERTA": {
      "prezzo": 1008000,
      "prezzo_dettaglio": {
        "prezzo_max": 1088000,
        "prezzo_min": 928000,
        "prezzo_mq": 11196
      }
    },
    "VALORE": {
      "avm": 954000,
      "avm_dettaglio": {
        "avm_idx": 1,
        "avm_max": 1029000,
        "avm_min": 878000,
        "avm_mq": 10595,
        "avm_ordinario": true,
        "avm_tipo": "predetto"
      },
      "superficie": 90,
      "superficie_esterna": 0,
      "superficie_interna": 90
    }
  },
  "request_uid": "a5108688-bf46-4b0a-b6b9-756396769cba"
}