Run with Postman

Comparabili

Web service for searching for real estate advertisements.

Annunci Immobiliari

Starting from a specific position and relative radius of delimitation, this service allows you to search for real estate ads near and included in that portion of the area

List of taxonomies

This method shows you the list of all taxonomies types

Authorizations:

Responses

Response Schema: application/json
object (Tassonomie)
success
boolean
message
string
error
integer

Request samples

CURL *hnd = curl_easy_init();

curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "https://comparabili.openapi.it/tassonomie");

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);

Response samples

Content type
application/json
{
  • "data": {
    },
  • "success": true,
  • "message": "",
  • "error": null
}

Specific taxonomie

This method shows you the specific type of taxonomie

Authorizations:
path Parameters
tassonomia
required
string
Default: "<string>"
Example: categoryType

Taxonomie type

Responses

Response Schema: application/json
object
success
boolean
message
string
error
integer

Request samples