Skip to content

OMI

POST /omi

Official Agenzia delle Entrate (OMI) quotations for the zone the property belongs to, for both sale and rent.

Example Request

curl --location 'https://appraisal.realitycs.it/omi' \
--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:

  • comune: Municipality of the OMI zone.
  • descrizione: Description of the OMI zone, usually the main streets or districts it covers.
  • nome: Name of the OMI zone.
  • prevalente: Flag telling whether the zone is the prevailing one for the municipality.
  • semestre: Reference period of the quotation, in <year>_<half> format.
  • stato: Maintenance condition the quotation refers to.
  • tipologia: Property typology the quotation refers to.
  • locazione.min / locazione.max: Minimum and maximum monthly rent per square metre, in €/m².
  • vendita.min / vendita.max: Minimum and maximum sale value per square metre, in €/m².

Example Response

{
  "omi": {
    "comune": "MILANO",
    "descrizione": "TURATI, MOSCOVA, CORSO VENEZIA",
    "locazione": {
      "max": 29.0,
      "min": 21.5
    },
    "nome": "MILANO - Zona OMI B18",
    "prevalente": 0,
    "semestre": "2025_2",
    "stato": "Normale",
    "tipologia": "Abitazioni civili",
    "vendita": {
      "max": 9000,
      "min": 6500
    }
  }
}