Skip to main content
POST
/
api
/
domain
/
properties
/domain/properties
curl --request POST \
  --url https://api.anysite.io/api/domain/properties \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "listing": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@domain_property",
    "url": "<string>",
    "headline": "<string>",
    "description": "<string>",
    "channel": "<string>",
    "objective": "<string>",
    "listing_type": "<string>",
    "listing_mode": "<string>",
    "sale_method": "<string>",
    "status": "<string>",
    "promo_level": "<string>",
    "property_type": "<string>",
    "property_types": [],
    "bedroom_count": 123,
    "bathroom_count": 123,
    "parking_count": 123,
    "land_size": 123,
    "building_size": 123,
    "building_size_unit": "<string>",
    "is_rural": true,
    "energy_rating": "<string>",
    "price": 123,
    "price_label": "<string>",
    "price_min": 123,
    "price_max": 123,
    "can_display_price": true,
    "bond": 123,
    "address": {
      "@type": "@domain_address",
      "display": "<string>",
      "street": "<string>",
      "street_number": "<string>",
      "unit_number": "<string>",
      "suburb": "<string>",
      "state": "<string>",
      "postcode": "<string>",
      "geolocation": {
        "@type": "@domain_geolocation",
        "latitude": 123,
        "longitude": 123
      }
    },
    "features": [],
    "images": [],
    "videos": [],
    "floor_plans": [],
    "virtual_tour_url": "<string>",
    "listed_at": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>",
    "sold_price": 123,
    "sold_price_label": "<string>",
    "sold_at": "<string>",
    "auction": {
      "@type": "@domain_auction",
      "starts_at": "<string>",
      "location": "<string>",
      "url": "<string>",
      "price": 123
    },
    "inspections": [],
    "agency": {
      "@type": "@domain_property_agency",
      "id": "<string>",
      "name": "<string>",
      "alias": "<string>",
      "image": "<string>",
      "website": "<string>",
      "phone": "<string>",
      "email": "<string>",
      "is_archived": true
    },
    "agents": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
listing
string
required

Domain listing id or a listing URL containing it

Minimum string length: 1
Examples:

"2020815222"

"https://www.domain.com.au/40-oxford-road-strathfield-nsw-2135-2020815222"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@domain_property
url
string | null
headline
string | null
description
string | null
channel
string | null
objective
string | null
listing_type
string | null
listing_mode
string | null
sale_method
string | null
status
string | null
promo_level
string | null
property_type
string | null
property_types
string[]
bedroom_count
integer | null
bathroom_count
integer | null
parking_count
integer | null
land_size
number | null
building_size
number | null
building_size_unit
string | null
is_rural
boolean | null
energy_rating
string | null
price
integer | null
price_label
string | null
price_min
integer | null
price_max
integer | null
can_display_price
boolean | null
bond
integer | null
address
DomainAddress · object
features
string[]
images
string[]
videos
string[]
floor_plans
string[]
virtual_tour_url
string | null
listed_at
string | null
created_at
string | null
updated_at
string | null
sold_price
integer | null
sold_price_label
string | null
sold_at
string | null
auction
DomainAuction · object
inspections
DomainInspection · object[]
agency
DomainPropertyAgency · object
agents
DomainPropertyAgent · object[]