/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
}
'import requests
url = "https://api.anysite.io/api/funda/listings"
payload = {
"listing": "<string>",
"timeout": 300
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({listing: '<string>', timeout: 300})
};
fetch('https://api.anysite.io/api/funda/listings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/funda/listings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'listing' => '<string>',
'timeout' => 300
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/funda/listings"
payload := strings.NewReader("{\n \"listing\": \"<string>\",\n \"timeout\": 300\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/funda/listings")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"listing\": \"<string>\",\n \"timeout\": 300\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/funda/listings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"listing\": \"<string>\",\n \"timeout\": 300\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"@type": "FundaListing",
"global_id": "<string>",
"url": "<string>",
"object_type": "<string>",
"offering_type": "<string>",
"status": "<string>",
"is_sold_or_rented": true,
"labels": [],
"address": {
"@type": "FundaListingAddress",
"street": "<string>",
"house_number": "<string>",
"postcode": "<string>",
"city": "<string>",
"neighbourhood": "<string>",
"province": "<string>",
"country": "<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": "FundaListingAgent",
"id": "<string>",
"association": "<string>"
},
"neighbourhood": {
"@type": "FundaNeighbourhood",
"city": "<string>",
"name": "<string>",
"inhabitants": 123,
"families_with_children": 123,
"average_asking_price_per_m2": 123
},
"sale_history": {
"@type": "FundaListingSaleHistory",
"offered_since": "<string>",
"sale_date": "<string>",
"days_on_market": "<string>"
},
"feature_sections": []
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/funda
/funda/listings
Get full Funda real estate listing details by listing id (or listing URL): address, neighbourhood, asking/rental price, living area, volume, number of rooms and bedrooms, energy label, build year, object and offering type, status, full description, photos, coordinates, selling agent, neighbourhood statistics, sale history (for sold/rented listings) and the full grouped characteristics (Kenmerken) sections.
Price: 5 credits
⚠️ Common errors: 412: Listing not found (well-formed but nonexistent listing id)
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
}
'import requests
url = "https://api.anysite.io/api/funda/listings"
payload = {
"listing": "<string>",
"timeout": 300
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({listing: '<string>', timeout: 300})
};
fetch('https://api.anysite.io/api/funda/listings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/funda/listings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'listing' => '<string>',
'timeout' => 300
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/funda/listings"
payload := strings.NewReader("{\n \"listing\": \"<string>\",\n \"timeout\": 300\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/funda/listings")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"listing\": \"<string>\",\n \"timeout\": 300\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/funda/listings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"listing\": \"<string>\",\n \"timeout\": 300\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"@type": "FundaListing",
"global_id": "<string>",
"url": "<string>",
"object_type": "<string>",
"offering_type": "<string>",
"status": "<string>",
"is_sold_or_rented": true,
"labels": [],
"address": {
"@type": "FundaListingAddress",
"street": "<string>",
"house_number": "<string>",
"postcode": "<string>",
"city": "<string>",
"neighbourhood": "<string>",
"province": "<string>",
"country": "<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": "FundaListingAgent",
"id": "<string>",
"association": "<string>"
},
"neighbourhood": {
"@type": "FundaNeighbourhood",
"city": "<string>",
"name": "<string>",
"inhabitants": 123,
"families_with_children": 123,
"average_asking_price_per_m2": 123
},
"sale_history": {
"@type": "FundaListingSaleHistory",
"offered_since": "<string>",
"sale_date": "<string>",
"days_on_market": "<string>"
},
"feature_sections": []
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes