Web service that, starting from a search by address, allows you to pull out real estate quotes, valuations and trends.
This method shows you the list of all property types
Array of objects (TipoImmobile) [ items ] | |
success | boolean |
message | string |
error | integer |
CURL *hnd = curl_easy_init(); curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET"); curl_easy_setopt(hnd, CURLOPT_URL, "https://valutometro.altravia.com/immobili"); struct curl_slist *headers = NULL; headers = curl_slist_append(headers, "Authorization: Bearer REPLACE_BEARER_TOKEN"); curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers); CURLcode ret = curl_easy_perform(hnd);
{- "data": [
- {
- "id": "20",
- "label": "Abitazioni in stabili civili"
}, - {
- "id": "19",
- "label": "Abitazioni in stabili signorili"
}, - {
- "id": "21",
- "label": "Abitazioni in stabili economici"
}, - {
- "id": "1",
- "label": "Ville e Villini"
}, - {
- "id": "6",
- "label": "Uffici"
}, - {
- "id": "5",
- "label": "Negozi"
}
], - "success": true,
- "message": "",
- "error": null
}
This method shows you the specific type of property
id required | string Default: "<string>" Example: 20 Property type |
object (TipoImmobile) | |
success | boolean |
message | string |
error | integer |
CURL *hnd = curl_easy_init(); curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET"); curl_easy_setopt(hnd, CURLOPT_URL, "https://valutometro.altravia.com/immobili/%7Bid%7D"); struct curl_slist *headers = NULL; headers = curl_slist_append(headers, "Authorization: Bearer REPLACE_BEARER_TOKEN"); curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers); CURLcode ret = curl_easy_perform(hnd);
{- "data": {
- "id": "20",
- "label": "Abitazioni in stabili civili"
}, - "success": true,
- "message": "",
- "error": null
}
This method shows you the list of all contract types
Array of objects (TipoContratto) [ items ] | |
success | boolean |
message | string |
error | integer |
CURL *hnd = curl_easy_init(); curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET"); curl_easy_setopt(hnd, CURLOPT_URL, "https://valutometro.altravia.com/contratti"); struct curl_slist *headers = NULL; headers = curl_slist_append(headers, "Authorization: Bearer REPLACE_BEARER_TOKEN"); curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers); CURLcode ret = curl_easy_perform(hnd);
{- "data": [
- {
- "id": "rent",
- "label": "Affitto"
}, - {
- "id": "sale",
- "label": "Vendita"
}
], - "success": true,
- "message": "",
- "error": null
}
This method shows you the specific type of contract
id required | string Default: "<string>" Example: rent Contract type |
object (TipoContratto) | |
success | boolean |
message | string |
error | integer |
CURL *hnd = curl_easy_init(); curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET"); curl_easy_setopt(hnd, CURLOPT_URL, "https://valutometro.altravia.com/contratti/%7Bid%7D"); struct curl_slist *headers = NULL; headers = curl_slist_append(headers, "Authorization: Bearer REPLACE_BEARER_TOKEN"); curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers); CURLcode ret = curl_easy_perform(hnd);
{- "data": {
- "id": "sale",
- "label": "Vendita"
}, - "success": true,
- "message": "",
- "error": null
}
Method that allows you to see the price of a property starting from the address
indirizzo required | string Default: "<string>" real estate address |
tipo_immobile required | string Default: "<string>" 20 |
tipo_contratto required | string Default: "<string>" sale |
object (ResponseQuotazione) | |
success | boolean |
message | string |
error | integer |
{- "indirizzo": "via del rivo 10 Terni",
- "tipo_immobile": "20",
- "tipo_contratto": "sale"
}
{- "data": {
- "id": "5f842816568fa17f473718a4",
- "nome": "Borgo Rivo, Campitello, Gabelletta, Citta Verde, Ponte Le Cave",
- "id_citta": "7432",
- "citta": "Terni",
- "cod_cat": "L117",
- "provincia": "TR",
- "id_provincia": "96",
- "id_regione": "18",
- "regione": "Umbria",
- "fascia": "semicentrale",
- "address": "via del rivo 10 Terni",
- "formatted": "Via del Rivo, 10, 05100 Terni TR, Italia",
- "loc2011": "5503210016",
- "coordinate": {
- "lat": 42.57712,
- "lng": 12.62637
}, - "immobile": {
- "type": "Abitazioni in stabili civili",
- "label": "Valori di Vendita Abitazioni in stabili civili al Mq",
- "id": 20
}, - "quotazione": {
- "min": 783,
- "max": 1145,
- "med": 964,
- "type": "sale"
}, - "timestamp": 1602496534,
- "owner":