Skip to main content
POST
/
api
/
immobiliare
/
agencies
/
properties
/immobiliare/agencies/properties
curl --request POST \
  --url https://api.anysite.io/api/immobiliare/agencies/properties \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "agency": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "@immobiliare_property_card",
    "url": "<string>",
    "title": "<string>",
    "caption": "<string>",
    "contract": "<string>",
    "property_type": "<string>",
    "typology": "<string>",
    "is_new": true,
    "is_luxury": true,
    "price": 123,
    "price_range": "<string>",
    "surface": 123,
    "rooms": 123,
    "bedrooms": 123,
    "bathrooms": 123,
    "floor": "<string>",
    "has_elevator": true,
    "energy_class": "<string>",
    "heating": "<string>",
    "condition": "<string>",
    "features": [],
    "address": "<string>",
    "zone": "<string>",
    "microzone": "<string>",
    "city": "<string>",
    "province": "<string>",
    "region": "<string>",
    "latitude": 123,
    "longitude": 123,
    "description": "<string>",
    "photos": [],
    "agency": {
      "@type": "@immobiliare_agency",
      "id": 123,
      "name": "<string>",
      "label": "<string>",
      "phone": "<string>",
      "url": "<string>",
      "image": "<string>",
      "agent_name": "<string>",
      "agent_phone": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
agency
string
required

Immobiliare.it agency id or an agency URL containing it

Minimum string length: 1
Examples:

"222140"

"https://www.immobiliare.it/agenzie-immobiliari/222140/tempocasa-roma-centocelle-mirti/"

count
integer
required

Max number of results to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:@immobiliare_property_card
url
string | null
title
string | null
caption
string | null
contract
string | null
property_type
string | null
typology
string | null
is_new
boolean | null
is_luxury
boolean | null
price
integer | null
price_range
string | null
surface
number | null
rooms
integer | null
bedrooms
integer | null
bathrooms
integer | null
floor
string | null
has_elevator
boolean | null
energy_class
string | null
heating
string | null
condition
string | null
features
string[]
address
string | null
zone
string | null
microzone
string | null
city
string | null
province
string | null
region
string | null
latitude
number | null
longitude
number | null
description
string | null
photos
string[]
agency
ImmobiliareAgency · object