Our prices
Price list for single API calls
- Provinces € 0,01 + vat
FREE first 10000 calls/month
Get the complete list of all Italian provinces with over 7 pieces of information.
Access data of Italian provinces in real time and via API.
The Provinces service belongs to the API ZIP Codes and allows you to check and obtain the list of Italian provinces in real-time via API.
It is identified by the endpoint: GET https://cap.openapi.it/province
This service allows you to obtain the list of provinces with over 7 pieces of information:
Provinces does not require any search parameter
https://cap.openapi.it/province
This is an example of a response:
{
"data": [
{
"sigla": "AG",
"capoluogo": "Agrigento"
"superficie": 10831.84
"residenti": 1305770,
"num_comuni": 305,
"istat": "084",
},
{
"...":"..."
}
],
"success": true,
"message": "",
"error": null
}
Another endpoint is also available (/province/{code}) which allows obtaining information directly about a single province.
In this case, it is necessary to pass the province code as a parameter.
This is an example of a query for the province of Frosinone where the parameter is FR
https://cap.openapi.it/province/fr
The response will contain the same information but only regarding one province.
This is an example of response for the province of Frosinone (FR):
{
"data": [
{
"sigla": "FR",
"capoluogo": "Frosinone",
"superficie": 3243.89,
"residenti": 493229,
"num_comuni": 91,
"istat": "060",
"regione": "Lazio"
}
],
"success": true,
"message": "",
"error": null
}