curl --request POST \
--url https://api.anysite.io/api/centaline/properties/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 2,
"timeout": 300,
"lang": "hk",
"keyword": "<string>",
"hma_ids": [
"<string>"
],
"estates": [
"<string>"
],
"order": "Ascending",
"listing_type": "Sale",
"phases": [
"<string>"
],
"mtr_stations": [
123
],
"primary_school_nets": [
"<string>"
],
"universities": [],
"min_price": 1,
"max_price": 1,
"min_saleable_area": 1,
"max_saleable_area": 1,
"min_price_per_sqft": 1,
"max_price_per_sqft": 1,
"min_building_age": 1,
"max_building_age": 1,
"bedroom_counts": [
2
],
"estate_usages": [],
"floor_levels": [],
"views": [],
"characteristics": [],
"facilities": [],
"topics": [],
"nearby_facilities": [],
"developers": [
"<string>"
],
"branches": [
"<string>"
],
"hos_only": true,
"sort": "Ranking"
}
'import requests
url = "https://api.anysite.io/api/centaline/properties/search"
payload = {
"count": 2,
"timeout": 300,
"lang": "hk",
"keyword": "<string>",
"hma_ids": ["<string>"],
"estates": ["<string>"],
"order": "Ascending",
"listing_type": "Sale",
"phases": ["<string>"],
"mtr_stations": [123],
"primary_school_nets": ["<string>"],
"universities": [],
"min_price": 1,
"max_price": 1,
"min_saleable_area": 1,
"max_saleable_area": 1,
"min_price_per_sqft": 1,
"max_price_per_sqft": 1,
"min_building_age": 1,
"max_building_age": 1,
"bedroom_counts": [2],
"estate_usages": [],
"floor_levels": [],
"views": [],
"characteristics": [],
"facilities": [],
"topics": [],
"nearby_facilities": [],
"developers": ["<string>"],
"branches": ["<string>"],
"hos_only": True,
"sort": "Ranking"
}
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({
count: 2,
timeout: 300,
lang: 'hk',
keyword: '<string>',
hma_ids: ['<string>'],
estates: ['<string>'],
order: 'Ascending',
listing_type: 'Sale',
phases: ['<string>'],
mtr_stations: [123],
primary_school_nets: ['<string>'],
universities: [],
min_price: 1,
max_price: 1,
min_saleable_area: 1,
max_saleable_area: 1,
min_price_per_sqft: 1,
max_price_per_sqft: 1,
min_building_age: 1,
max_building_age: 1,
bedroom_counts: [2],
estate_usages: [],
floor_levels: [],
views: [],
characteristics: [],
facilities: [],
topics: [],
nearby_facilities: [],
developers: ['<string>'],
branches: ['<string>'],
hos_only: true,
sort: 'Ranking'
})
};
fetch('https://api.anysite.io/api/centaline/properties/search', 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/centaline/properties/search",
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([
'count' => 2,
'timeout' => 300,
'lang' => 'hk',
'keyword' => '<string>',
'hma_ids' => [
'<string>'
],
'estates' => [
'<string>'
],
'order' => 'Ascending',
'listing_type' => 'Sale',
'phases' => [
'<string>'
],
'mtr_stations' => [
123
],
'primary_school_nets' => [
'<string>'
],
'universities' => [
],
'min_price' => 1,
'max_price' => 1,
'min_saleable_area' => 1,
'max_saleable_area' => 1,
'min_price_per_sqft' => 1,
'max_price_per_sqft' => 1,
'min_building_age' => 1,
'max_building_age' => 1,
'bedroom_counts' => [
2
],
'estate_usages' => [
],
'floor_levels' => [
],
'views' => [
],
'characteristics' => [
],
'facilities' => [
],
'topics' => [
],
'nearby_facilities' => [
],
'developers' => [
'<string>'
],
'branches' => [
'<string>'
],
'hos_only' => true,
'sort' => 'Ranking'
]),
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/centaline/properties/search"
payload := strings.NewReader("{\n \"count\": 2,\n \"timeout\": 300,\n \"lang\": \"hk\",\n \"keyword\": \"<string>\",\n \"hma_ids\": [\n \"<string>\"\n ],\n \"estates\": [\n \"<string>\"\n ],\n \"order\": \"Ascending\",\n \"listing_type\": \"Sale\",\n \"phases\": [\n \"<string>\"\n ],\n \"mtr_stations\": [\n 123\n ],\n \"primary_school_nets\": [\n \"<string>\"\n ],\n \"universities\": [],\n \"min_price\": 1,\n \"max_price\": 1,\n \"min_saleable_area\": 1,\n \"max_saleable_area\": 1,\n \"min_price_per_sqft\": 1,\n \"max_price_per_sqft\": 1,\n \"min_building_age\": 1,\n \"max_building_age\": 1,\n \"bedroom_counts\": [\n 2\n ],\n \"estate_usages\": [],\n \"floor_levels\": [],\n \"views\": [],\n \"characteristics\": [],\n \"facilities\": [],\n \"topics\": [],\n \"nearby_facilities\": [],\n \"developers\": [\n \"<string>\"\n ],\n \"branches\": [\n \"<string>\"\n ],\n \"hos_only\": true,\n \"sort\": \"Ranking\"\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/centaline/properties/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 2,\n \"timeout\": 300,\n \"lang\": \"hk\",\n \"keyword\": \"<string>\",\n \"hma_ids\": [\n \"<string>\"\n ],\n \"estates\": [\n \"<string>\"\n ],\n \"order\": \"Ascending\",\n \"listing_type\": \"Sale\",\n \"phases\": [\n \"<string>\"\n ],\n \"mtr_stations\": [\n 123\n ],\n \"primary_school_nets\": [\n \"<string>\"\n ],\n \"universities\": [],\n \"min_price\": 1,\n \"max_price\": 1,\n \"min_saleable_area\": 1,\n \"max_saleable_area\": 1,\n \"min_price_per_sqft\": 1,\n \"max_price_per_sqft\": 1,\n \"min_building_age\": 1,\n \"max_building_age\": 1,\n \"bedroom_counts\": [\n 2\n ],\n \"estate_usages\": [],\n \"floor_levels\": [],\n \"views\": [],\n \"characteristics\": [],\n \"facilities\": [],\n \"topics\": [],\n \"nearby_facilities\": [],\n \"developers\": [\n \"<string>\"\n ],\n \"branches\": [\n \"<string>\"\n ],\n \"hos_only\": true,\n \"sort\": \"Ranking\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/centaline/properties/search")
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 \"count\": 2,\n \"timeout\": 300,\n \"lang\": \"hk\",\n \"keyword\": \"<string>\",\n \"hma_ids\": [\n \"<string>\"\n ],\n \"estates\": [\n \"<string>\"\n ],\n \"order\": \"Ascending\",\n \"listing_type\": \"Sale\",\n \"phases\": [\n \"<string>\"\n ],\n \"mtr_stations\": [\n 123\n ],\n \"primary_school_nets\": [\n \"<string>\"\n ],\n \"universities\": [],\n \"min_price\": 1,\n \"max_price\": 1,\n \"min_saleable_area\": 1,\n \"max_saleable_area\": 1,\n \"min_price_per_sqft\": 1,\n \"max_price_per_sqft\": 1,\n \"min_building_age\": 1,\n \"max_building_age\": 1,\n \"bedroom_counts\": [\n 2\n ],\n \"estate_usages\": [],\n \"floor_levels\": [],\n \"views\": [],\n \"characteristics\": [],\n \"facilities\": [],\n \"topics\": [],\n \"nearby_facilities\": [],\n \"developers\": [\n \"<string>\"\n ],\n \"branches\": [\n \"<string>\"\n ],\n \"hos_only\": true,\n \"sort\": \"Ranking\"\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"@type": "CentalineProperty",
"url": "<string>",
"listing_type": "<string>",
"estate_group_name": "<string>",
"estate_name": "<string>",
"building_name": "<string>",
"address": "<string>",
"district": "<string>",
"floor_level": "<string>",
"unit": "<string>",
"price": 123,
"premium_paid_price": 123,
"premium_unpaid_price": 123,
"original_price": 123,
"price_change_percent": 123,
"rent": 123,
"original_rent": 123,
"rent_change_percent": 123,
"price_text": "<string>",
"rent_text": "<string>",
"gross_area": 123,
"saleable_area": 123,
"efficiency_ratio": 123,
"gross_price_per_sqft": 123,
"saleable_price_per_sqft": 123,
"gross_rent_per_sqft": 123,
"saleable_rent_per_sqft": 123,
"rental_yield": 123,
"monthly_mortgage_payment": 123,
"bedroom_count": 123,
"ensuite_count": 123,
"building_age": 123,
"direction": "<string>",
"building_type": "<string>",
"unit_type": "<string>",
"estate_structure": "<string>",
"is_hos": true,
"is_public_housing": true,
"is_house": true,
"is_sole_agent": true,
"has_key": true,
"is_foreclosure": true,
"is_pet_friendly": true,
"is_hot_listing": true,
"is_director_pick": true,
"with_lease": true,
"is_management_fee_included": true,
"is_government_rates_included": true,
"is_government_rent_included": true,
"estate_group_code": "<string>",
"estate_code": "<string>",
"building_code": "<string>",
"type_code": "<string>",
"labels": [],
"nearby_places": [],
"scope": {
"@type": "CentalineScope",
"region": "<string>",
"region_code": "<string>",
"district": "<string>",
"district_code": "<string>",
"area": "<string>",
"area_code": "<string>",
"hma": "<string>",
"hma_id": "<string>",
"hma_description": "<string>",
"image": "<string>"
},
"media": {
"@type": "CentalineMediaFlags",
"has_media": true,
"has_photos": true,
"has_street_view": true,
"has_sphere": true,
"has_video": true,
"has_virtual_tour": true,
"has_floor_plan": true,
"has_planning_diagram": true,
"has_unit_plan": true,
"has_aerial_view": true,
"has_building_3d_model": true
},
"latitude": 123,
"longitude": 123,
"image": "<string>",
"aerial_view_url": "<string>",
"published_at": 123,
"updated_at": 123
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/centaline/properties/search
Search Centaline Hong Kong residential listings for sale or rent across the full filter surface: free-text keyword, Housing Market Area, estate and phase type codes, MTR station, primary school net, nearby university, price, saleable area, price per saleable sq ft, building age, bedroom count, ownership category (private / HOS / public housing), floor band, outlook, unit characteristics, clubhouse facilities, curated categories, required nearby amenities, walking time to the MTR, developer and Centaline branch, with ordering by ranking, price, publish date, saleable or gross area, saleable or gross price per sq ft, or building age. Returns listing cards with prices and rents, the land-premium-paid and premium-unpaid asking prices on subsidised housing, the previous asking price or rent and the percentage cut where the asking has been reduced, gross and saleable areas and per-sq-ft rates, bedroom and ensuite counts, building age, orientation, labels, nearby places, district hierarchy, media availability, coordinates and timestamps.
Price: 5 credits per 100 results
curl --request POST \
--url https://api.anysite.io/api/centaline/properties/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 2,
"timeout": 300,
"lang": "hk",
"keyword": "<string>",
"hma_ids": [
"<string>"
],
"estates": [
"<string>"
],
"order": "Ascending",
"listing_type": "Sale",
"phases": [
"<string>"
],
"mtr_stations": [
123
],
"primary_school_nets": [
"<string>"
],
"universities": [],
"min_price": 1,
"max_price": 1,
"min_saleable_area": 1,
"max_saleable_area": 1,
"min_price_per_sqft": 1,
"max_price_per_sqft": 1,
"min_building_age": 1,
"max_building_age": 1,
"bedroom_counts": [
2
],
"estate_usages": [],
"floor_levels": [],
"views": [],
"characteristics": [],
"facilities": [],
"topics": [],
"nearby_facilities": [],
"developers": [
"<string>"
],
"branches": [
"<string>"
],
"hos_only": true,
"sort": "Ranking"
}
'import requests
url = "https://api.anysite.io/api/centaline/properties/search"
payload = {
"count": 2,
"timeout": 300,
"lang": "hk",
"keyword": "<string>",
"hma_ids": ["<string>"],
"estates": ["<string>"],
"order": "Ascending",
"listing_type": "Sale",
"phases": ["<string>"],
"mtr_stations": [123],
"primary_school_nets": ["<string>"],
"universities": [],
"min_price": 1,
"max_price": 1,
"min_saleable_area": 1,
"max_saleable_area": 1,
"min_price_per_sqft": 1,
"max_price_per_sqft": 1,
"min_building_age": 1,
"max_building_age": 1,
"bedroom_counts": [2],
"estate_usages": [],
"floor_levels": [],
"views": [],
"characteristics": [],
"facilities": [],
"topics": [],
"nearby_facilities": [],
"developers": ["<string>"],
"branches": ["<string>"],
"hos_only": True,
"sort": "Ranking"
}
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({
count: 2,
timeout: 300,
lang: 'hk',
keyword: '<string>',
hma_ids: ['<string>'],
estates: ['<string>'],
order: 'Ascending',
listing_type: 'Sale',
phases: ['<string>'],
mtr_stations: [123],
primary_school_nets: ['<string>'],
universities: [],
min_price: 1,
max_price: 1,
min_saleable_area: 1,
max_saleable_area: 1,
min_price_per_sqft: 1,
max_price_per_sqft: 1,
min_building_age: 1,
max_building_age: 1,
bedroom_counts: [2],
estate_usages: [],
floor_levels: [],
views: [],
characteristics: [],
facilities: [],
topics: [],
nearby_facilities: [],
developers: ['<string>'],
branches: ['<string>'],
hos_only: true,
sort: 'Ranking'
})
};
fetch('https://api.anysite.io/api/centaline/properties/search', 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/centaline/properties/search",
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([
'count' => 2,
'timeout' => 300,
'lang' => 'hk',
'keyword' => '<string>',
'hma_ids' => [
'<string>'
],
'estates' => [
'<string>'
],
'order' => 'Ascending',
'listing_type' => 'Sale',
'phases' => [
'<string>'
],
'mtr_stations' => [
123
],
'primary_school_nets' => [
'<string>'
],
'universities' => [
],
'min_price' => 1,
'max_price' => 1,
'min_saleable_area' => 1,
'max_saleable_area' => 1,
'min_price_per_sqft' => 1,
'max_price_per_sqft' => 1,
'min_building_age' => 1,
'max_building_age' => 1,
'bedroom_counts' => [
2
],
'estate_usages' => [
],
'floor_levels' => [
],
'views' => [
],
'characteristics' => [
],
'facilities' => [
],
'topics' => [
],
'nearby_facilities' => [
],
'developers' => [
'<string>'
],
'branches' => [
'<string>'
],
'hos_only' => true,
'sort' => 'Ranking'
]),
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/centaline/properties/search"
payload := strings.NewReader("{\n \"count\": 2,\n \"timeout\": 300,\n \"lang\": \"hk\",\n \"keyword\": \"<string>\",\n \"hma_ids\": [\n \"<string>\"\n ],\n \"estates\": [\n \"<string>\"\n ],\n \"order\": \"Ascending\",\n \"listing_type\": \"Sale\",\n \"phases\": [\n \"<string>\"\n ],\n \"mtr_stations\": [\n 123\n ],\n \"primary_school_nets\": [\n \"<string>\"\n ],\n \"universities\": [],\n \"min_price\": 1,\n \"max_price\": 1,\n \"min_saleable_area\": 1,\n \"max_saleable_area\": 1,\n \"min_price_per_sqft\": 1,\n \"max_price_per_sqft\": 1,\n \"min_building_age\": 1,\n \"max_building_age\": 1,\n \"bedroom_counts\": [\n 2\n ],\n \"estate_usages\": [],\n \"floor_levels\": [],\n \"views\": [],\n \"characteristics\": [],\n \"facilities\": [],\n \"topics\": [],\n \"nearby_facilities\": [],\n \"developers\": [\n \"<string>\"\n ],\n \"branches\": [\n \"<string>\"\n ],\n \"hos_only\": true,\n \"sort\": \"Ranking\"\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/centaline/properties/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 2,\n \"timeout\": 300,\n \"lang\": \"hk\",\n \"keyword\": \"<string>\",\n \"hma_ids\": [\n \"<string>\"\n ],\n \"estates\": [\n \"<string>\"\n ],\n \"order\": \"Ascending\",\n \"listing_type\": \"Sale\",\n \"phases\": [\n \"<string>\"\n ],\n \"mtr_stations\": [\n 123\n ],\n \"primary_school_nets\": [\n \"<string>\"\n ],\n \"universities\": [],\n \"min_price\": 1,\n \"max_price\": 1,\n \"min_saleable_area\": 1,\n \"max_saleable_area\": 1,\n \"min_price_per_sqft\": 1,\n \"max_price_per_sqft\": 1,\n \"min_building_age\": 1,\n \"max_building_age\": 1,\n \"bedroom_counts\": [\n 2\n ],\n \"estate_usages\": [],\n \"floor_levels\": [],\n \"views\": [],\n \"characteristics\": [],\n \"facilities\": [],\n \"topics\": [],\n \"nearby_facilities\": [],\n \"developers\": [\n \"<string>\"\n ],\n \"branches\": [\n \"<string>\"\n ],\n \"hos_only\": true,\n \"sort\": \"Ranking\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/centaline/properties/search")
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 \"count\": 2,\n \"timeout\": 300,\n \"lang\": \"hk\",\n \"keyword\": \"<string>\",\n \"hma_ids\": [\n \"<string>\"\n ],\n \"estates\": [\n \"<string>\"\n ],\n \"order\": \"Ascending\",\n \"listing_type\": \"Sale\",\n \"phases\": [\n \"<string>\"\n ],\n \"mtr_stations\": [\n 123\n ],\n \"primary_school_nets\": [\n \"<string>\"\n ],\n \"universities\": [],\n \"min_price\": 1,\n \"max_price\": 1,\n \"min_saleable_area\": 1,\n \"max_saleable_area\": 1,\n \"min_price_per_sqft\": 1,\n \"max_price_per_sqft\": 1,\n \"min_building_age\": 1,\n \"max_building_age\": 1,\n \"bedroom_counts\": [\n 2\n ],\n \"estate_usages\": [],\n \"floor_levels\": [],\n \"views\": [],\n \"characteristics\": [],\n \"facilities\": [],\n \"topics\": [],\n \"nearby_facilities\": [],\n \"developers\": [\n \"<string>\"\n ],\n \"branches\": [\n \"<string>\"\n ],\n \"hos_only\": true,\n \"sort\": \"Ranking\"\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"@type": "CentalineProperty",
"url": "<string>",
"listing_type": "<string>",
"estate_group_name": "<string>",
"estate_name": "<string>",
"building_name": "<string>",
"address": "<string>",
"district": "<string>",
"floor_level": "<string>",
"unit": "<string>",
"price": 123,
"premium_paid_price": 123,
"premium_unpaid_price": 123,
"original_price": 123,
"price_change_percent": 123,
"rent": 123,
"original_rent": 123,
"rent_change_percent": 123,
"price_text": "<string>",
"rent_text": "<string>",
"gross_area": 123,
"saleable_area": 123,
"efficiency_ratio": 123,
"gross_price_per_sqft": 123,
"saleable_price_per_sqft": 123,
"gross_rent_per_sqft": 123,
"saleable_rent_per_sqft": 123,
"rental_yield": 123,
"monthly_mortgage_payment": 123,
"bedroom_count": 123,
"ensuite_count": 123,
"building_age": 123,
"direction": "<string>",
"building_type": "<string>",
"unit_type": "<string>",
"estate_structure": "<string>",
"is_hos": true,
"is_public_housing": true,
"is_house": true,
"is_sole_agent": true,
"has_key": true,
"is_foreclosure": true,
"is_pet_friendly": true,
"is_hot_listing": true,
"is_director_pick": true,
"with_lease": true,
"is_management_fee_included": true,
"is_government_rates_included": true,
"is_government_rent_included": true,
"estate_group_code": "<string>",
"estate_code": "<string>",
"building_code": "<string>",
"type_code": "<string>",
"labels": [],
"nearby_places": [],
"scope": {
"@type": "CentalineScope",
"region": "<string>",
"region_code": "<string>",
"district": "<string>",
"district_code": "<string>",
"area": "<string>",
"area_code": "<string>",
"hma": "<string>",
"hma_id": "<string>",
"hma_description": "<string>",
"image": "<string>"
},
"media": {
"@type": "CentalineMediaFlags",
"has_media": true,
"has_photos": true,
"has_street_view": true,
"has_sphere": true,
"has_video": true,
"has_virtual_tour": true,
"has_floor_plan": true,
"has_planning_diagram": true,
"has_unit_plan": true,
"has_aerial_view": true,
"has_building_3d_model": true
},
"latitude": 123,
"longitude": 123,
"image": "<string>",
"aerial_view_url": "<string>",
"published_at": 123,
"updated_at": 123
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
x >= 120 <= x <= 1500hk, sc, en Ascending, Descending Sale, Rent 香港大學, 香港中文大學, 香港科技大學, 香港理工大學, 香港城市大學, 香港浸會大學, 嶺南大學, 香港樹仁大學 x >= 0x >= 0x >= 0x >= 0x >= 0x >= 0x >= 0x >= 00 <= x <= 4RE, HosPaid, HosUnpaid, PrhPaid, PrhUnpaid, Other HighFloor, MiddleFloor, LowFloor Green, Sea, Mountain, Building, Street, Pond, Pool, River, Stadium, Racecourse, Bridge Balcony, Carpark, Roof, Terrace, Garden, Carport1, SwimmingPool, AdjacentUnit, DuplexUnit SwimmingPool, IndoorSwimmingPool, ChildrensPool, Gymnasium, ChildrenPlaygroundPlayRoom, PlaygroundPlayroom, SaunnaRoom, SteamBathRoom, Jacuzzi, TennisCourt, SquashCourt, BadmintonCourt, TableTennis, SnookerRoom, GolfDrivingRange, BallRoom, ReadingStudyRoom mortgage90, mortgage1125to1500, hasmatterport, vrguide, aivr, aitalk, hasvideo, interior, keeppet, midprice, kol, haskey, ssd100, entry, mansion, highrentalreturnestate, carpark, soleagent, above30m, salemarkdown, rentmarkdown, house, highrent, latest, todayspecial, selection, discountpost, mortgagee NearMtr, NearArcade, NearCarpark, NearEVCharge, NearLargePark, NearUniversity 120, 300, 600 Ranking, PublishDate, Price, NSize, Size, NUnitPrice, UnitPrice, BuildingAge Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes