HomeProductsCadastral Property Data - Italy

Cadastral Property Data - Italy

FREE 1440 requests/day

From: €0.10 + VAT

FREE requests

Get the list of properties and land, with over 10 pieces of information, starting with the address. All within minutes and via API

Delivery

In a few minutes

available for
  • it

The Cadastral Property Data serviceallows access to updated property or land information and their respective owners based on cadastral data: sheet, parcel, and subaltern (optional).

The service  belongs to the Cadastral API and is identified by the endpoint https://catasto.openapi.it/richiesta/prospetto_catastale

REQUEST EXAMPLE

POST /prospetto_catastale

The method to use in the request is POST and here is an example call to the cadastral report endpoint:

POST https://catasto.openapi.it/richiesta/prospetto_catastale

The parameters to pass in the request body are:

  • type of cadastral (T for land or F for Building)
  • province
  • municipality
  • sheet
  • parcel
  • section
  • subaltern (optional)

This is an example of the parameters needed for a request with cadastral type 'Building':

{
      "tipo_catasto": "F",
      "provincia": "RM",
      "comune": "ROMA",
      "sezione": null,
      "foglio": 872,
      "particella": 405
      "subalterno": 48
    }

The response is asynchronous. It is possible to set up a callback during the request phase to be updated on when the data will be available, without having to call the endpoint GET/richiesta/{id} multiple times to check its status.

RESPONSE EXAMPLE

POST /prospetto_catastale

The response will include the parameters used in the request plus the request ID:

{
  "data": {
    "endpoint": "prospetto_catastale",
    "stato": "in_erogazione",
    "callback": false,
    "parametri": {
      "tipo_catasto": "F",
      "provincia": "ROMA Territorio-RM",
      "comune": "H501#ROMA#4#0",
      "sezione": null,
      "sezione_urbana": null,
      "foglio": 872,
      "particella": 405
      "subalterno": 48
    },
    "risultato": null,
    "esito": null,
    "timestamp": 1716374985,
    "owner": "[email protected]",
    "id": "664dcdc97de11b2d0426430f"
  },
  "success": true,
  "message": "",
  "error": null
}

REQUEST EXAMPLE

GET/richiesta/{id}

To obtain the data, it will be necessary to make a second request, as previously mentioned, to another endpoint with the previously obtained id. Here is an example:

GET https://catasto.openapi.it/richiesta/664dcdc97de11b2d0426430f

RESPONSE EXAMPLE

GET/richiesta/{id}

In this case, the data present in the response will include the parameters used in the request and information on properties or lands matching the search.

If the search was done on cadastral type 'Building', the information will be as follows:

  • address
  • cadastral zone
  • category
  • class
  • consistency
  • rent
  • account
  • subaltern
  • owner's name or denomination
  • cadastral fiscal code
  • property type
  • property id

This is an example of a response with 2 properties in the result:

{
  "data": {
    "endpoint": "prospetto_catastale",
    "stato": "evasa",
    "callback": false,
    "parametri": {
      "tipo_catasto": "F",
      "provincia": "ROMA Territorio-RM",
      "comune": "H501#ROMA#4#0",
      "sezione": null,
      "sezione_urbana": null,
      "foglio": 872,
      "particella": 405
      "subalterno": 48
    },
    "risultato": {
      "immobili": [
        {
          "sezione_urbana": null,
          "foglio": 872,
          "particella": 405,
          "subalterno": 48,
          "indirizzo": "ROMA VIALE FILIPPO TOMMASO MARINETTI, SNC Piano S2 int. 1",
          "sezione": null,
          "zona_censuaria": "6",
          "categoria": "C/6",
          "classe": "13",
          "consistenza": "23 mq",
          "rendita": "Euro:108,09",
          "partita": "",
          "id_immobile": "saf1sf9djosaj0asdaljf93jfjkdkjsòfrjòjsdfòajdsòjfòsjf"
          "intestatari": [
            {
             "denominazione": "OPENAPI SRL con sede in ROMA (RM)",
             "cf": "12485671007",
             "proprieta": "Proprietà superficiaria",
             "quota": "1/1",
            },
            {
             "denominazione": "ROMA CAPITALE con sede in ROMA (RM)",
             "cf": "02438750586",
             "proprieta": "Diritto del concedente",
             "quota": "1/1",
            }
        }
      ]
    },
    "esito": "OK",
    "timestamp": 1625232029,
    "owner": "[email protected]",
    "id": "60e581c58138e80d804dad20"
  },
  "success": true,
  "message": "",
  "error": null
}

If, on the other hand, Land (T) is selected as the land register type, the following information will be available in the response:

  • class
  • dominical income
  • agrarian income
  • lot
  • portions
  • quality
  • hectare (ha)
  • ares (ara)
  • centiaria (ca)
  • First name and Surname or Denomination of the holder(s)
  • Tax code of the holder(s)
  • property type
  • property_id

This is an example of a response for a plot of land::

{
  "data": {
    "endpoint": "prospetto_catastale",
    "stato": "evasa",
    "callback": false,
    "parametri": {
      "tipo_catasto": "T",
      "provincia": "SALERNO Territorio-SA",
      "comune": "H394#EBOLI#0#0",
      "sezione": null,
      "sezione_urbana": null,
      "foglio": 58,
      "particella": 198
    },
    "risultato": {
      "immobili": [
        {
          "foglio": 58,
          "sezione_urbana": null,
          "particella": 198,
          "subalterno": "",
          "qualita": "SEMIN ARBOR",
          "classe": "5",
          "ha": "0",
          "are": "43",
          "ca": "14",
          "reddito_dominicale": "Euro: 6,68",
          "reddito_agrario": "Euro: 14,48",
          "partita": "0023256",
          "porzioni": "",
          "id_immobile":  "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
            "intestatari": [
            {
              "denominazione": "Paolo Rossi",
              "cf": "XXXXXXXXXXXXX",
              "proprieta": "Proprieta'",
              "quota": ""
            },
            {
              "denominazione": "Claudia Rossi",
              "cf": "XXXXXXXXXXXXX",
              "proprieta": "Proprieta'",
              "quota": ""
            }
        }
      ]
    },
    "esito": "OK",
    "timestamp": 1716374199,
    "owner": "[email protected]",
    "id": "664dcab87de11b2d042642f2"
  },
  "success": true,
  "message": "",
  "error": null
}

The response will also provide the IDs of the property/land that can be used to make a direct request for a cadastral property view (ordinary or historical) with the dedicated endpoint.

Sign Up

Do you need help?

Haven't found the answer you're looking for?

Fill in all the details, we will get back to you as soon as possible!

Frequently Asked Questions

The Cadastral Property Data service (in Italian prospetto catastale) allows you to quickly obtain all the main information related to a property and its owners. The required data includes the type of cadastral registry, province, municipality, sheet, and parcel.
The Cadastral Property Data provides details about the property, such as sheet, parcel, subordinate, address, cadastral code, class, consistency, and rental value. Additionally, compared to the Person Search service, it offers complete information about the owners, such as their name or company name, tax code, type of ownership, and share of ownership.

What is the Cadastral Property Data service?

The Cadastral Property Dataservice is currently available only for Italy.

Which countries is the Cadastral Property Data service available for?

The Cadastral Property Data service provides the following information on Italian properties and owners::

  • Sheet
  • Parcel
  • Subordinate
  • Address
  • Municipality
  • Province
  • Cadastral code
  • Class
  • Consistency
  • Rental value
  • Owner's name or company name
  • Owner's tax code
  • Owner's type of ownership
  • Owner's share
What information can I obtain with the Cadastral Property Data service?

Yes, through Openapi’s APIs, you can access over 28 services dedicated to the real estate sector:

  • Postal Codes (CAP)
  • Search Municipalities
  • Basic and Advanced Municipalities
  • Provinces, Regions, and Metropolitan Cities
  • Suppressed Municipalities
  • Geocoding and Reverse Geocoding
  • Real Estate Valuation Start and Advanced (SMQ)
  • Property Transactions (RMV)
  • Property List from Cadastral Identifiers and Address
  • Person Search and National Search
  • Cadastral Report
  • National Mortgage Inspection
  • Mortgage Inspection for Property and by Subject
  • Mortgage Inspection of a Single Note
  • Cadastral Plan
  • Planimetric Document
  • Extract from Map
  • Lease Contract Registration, Cancellation, and Extension

These services are available through different APIs: Docuengine, Cadastre, Real Estate.

Are there other services available for the real estate sector?

The Cadastral Property Data service is intended for those who need verified data on properties and owners. It provides the same information as the cadastral survey but in data (json) format rather than PDF, making it easier to integrate into IT systems and at a much lower cost.

Who is the Cadastral Property Data service intended for?

Data is returned within a few minutes.

What are the response times for the Cadastral Property Data service?

The cost of the service starts at €0.10 with a subscription or €0.30 with a prepaid charge.

 

What are the costs for the Cadastral Property Data service?