Skip to main content
POST
/
api
/
pararius
/
properties
/pararius/properties
curl --request POST \
  --url https://api.anysite.io/api/pararius/properties \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "property": "<string>",
  "timeout": 300,
  "city": "",
  "listing_id": ""
}
'
[
  {
    "id": "<string>",
    "@type": "@pararius_property",
    "global_id": "<string>",
    "url": "<string>",
    "title": "<string>",
    "offering_type": "<string>",
    "status": "<string>",
    "address": {
      "@type": "@pararius_property_address",
      "street": "<string>",
      "postcode": "<string>",
      "city": "<string>",
      "district": "<string>"
    },
    "description": "<string>",
    "price": 123,
    "price_label": "<string>",
    "price_per_m2": 123,
    "deposit": 123,
    "service_charge": 123,
    "offered_since": "<string>",
    "available": "<string>",
    "interior": "<string>",
    "living_area_m2": 123,
    "volume_m3": 123,
    "plot_area_m2": 123,
    "room_count": 123,
    "bedroom_count": 123,
    "bathroom_count": 123,
    "floor_count": 123,
    "dwelling_type": "<string>",
    "construction_type": "<string>",
    "build_year": 123,
    "energy_label": "<string>",
    "facilities": [],
    "situations": [],
    "coordinates": [],
    "images": [],
    "agent": {
      "@type": "@pararius_property_agent",
      "name": "<string>",
      "alias": "<string>",
      "city": "<string>",
      "url": "<string>",
      "image": "<string>"
    },
    "points_of_interest": [],
    "feature_sections": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
property
string
required

Pararius listing URL, or a city/id pair identifying the listing

Minimum string length: 1
Examples:

"https://www.pararius.com/apartment-for-rent/amsterdam/cdac4364/eerste-atjehstraat"

"amsterdam/cdac4364"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
city
string
default:""
listing_id
string
default:""

Response

Successful Response

id
string
required
@type
string
default:@pararius_property
global_id
string | null
url
string | null
title
string | null
offering_type
string | null
status
string | null
address
ParariusPropertyAddress · object
description
string | null
price
integer | null
price_label
string | null
price_per_m2
integer | null
deposit
integer | null
service_charge
integer | null
offered_since
string | null
available
string | null
interior
string | null
living_area_m2
integer | null
volume_m3
integer | null
plot_area_m2
integer | null
room_count
integer | null
bedroom_count
integer | null
bathroom_count
integer | null
floor_count
integer | null
dwelling_type
string | null
construction_type
string | null
build_year
integer | null
energy_label
string | null
facilities
string[]
situations
string[]
coordinates
number[]
images
string[]
agent
ParariusPropertyAgent · object
points_of_interest
ParariusPointOfInterest · object[]
feature_sections
ParariusPropertyFeatureSection · object[]