Skip to main content
POST
/
api
/
funda
/
listings
/funda/listings
curl --request POST \
  --url https://api.anysite.io/api/funda/listings \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "listing": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@funda_listing",
    "global_id": "<string>",
    "url": "<string>",
    "object_type": "<string>",
    "offering_type": "<string>",
    "status": "<string>",
    "is_sold_or_rented": true,
    "labels": [],
    "address": {
      "@type": "@funda_listing_address",
      "street": "<string>",
      "house_number": "<string>",
      "postcode": "<string>",
      "city": "<string>",
      "neighbourhood": "<string>",
      "province": "<string>",
      "country": "<string>"
    },
    "description": "<string>",
    "blikvanger": "<string>",
    "price": 123,
    "price_label": "<string>",
    "living_area_m2": 123,
    "volume_m3": 123,
    "room_count": 123,
    "bedroom_count": 123,
    "energy_label": "<string>",
    "build_year": 123,
    "coordinates": [],
    "publication_date": "<string>",
    "views": 123,
    "saves": 123,
    "images": [],
    "agent": {
      "@type": "@funda_listing_agent",
      "id": "<string>",
      "association": "<string>"
    },
    "neighbourhood": {
      "@type": "@funda_neighbourhood",
      "city": "<string>",
      "name": "<string>",
      "inhabitants": 123,
      "families_with_children": 123,
      "average_asking_price_per_m2": 123
    },
    "sale_history": {
      "@type": "@funda_listing_sale_history",
      "offered_since": "<string>",
      "sale_date": "<string>",
      "days_on_market": "<string>"
    },
    "feature_sections": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
listing
string
required

Funda listing id or a listing URL containing it

Minimum string length: 1
Examples:

"44479270"

"https://www.funda.nl/detail/koop/amsterdam/appartement-rhijnvis-feithstraat-28-a/44479270/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@funda_listing
global_id
string | null
url
string | null
object_type
string | null
offering_type
string | null
status
string | null
is_sold_or_rented
boolean | null
labels
string[]
address
FundaListingAddress · object
description
string | null
blikvanger
string | null
price
integer | null
price_label
string | null
living_area_m2
integer | null
volume_m3
integer | null
room_count
integer | null
bedroom_count
integer | null
energy_label
string | null
build_year
integer | null
coordinates
number[]
publication_date
string | null
views
integer | null
saves
integer | null
images
string[]
agent
FundaListingAgent · object
neighbourhood
FundaNeighbourhood · object
sale_history
FundaListingSaleHistory · object
feature_sections
FundaListingFeatureSection · object[]