properties
properties
Page 7 of 9.
Overview
-
Centennial Condo
condo · Centennial
★ 3.5 (255) · $1388.14/night
-
Kemmerside House
house · Kemmerside
★ 3.6 (406) · $467.39/night
-
New Hudsonfield Condo
condo · New Hudsonfield
★ 3.9 (1125) · $1296.8/night
-
Sarahbury Cabin
cabin · Sarahbury
★ 4.2 (364) · $454.37/night
-
South Lilian Villa
villa · South Lilian
★ 4.3 (1457) · $1487.67/night
-
Bradtkefield House
house · Bradtkefield
★ 3.1 (1401) · $1197.31/night
-
Fort Rebecaland Apartment
apartment · Fort Rebecaland
★ 4.5 (872) · $220.66/night
-
Stromanstead Condo
condo · Stromanstead
★ 4.0 (1122) · $51.08/night
-
Catalina Foothills Condo
condo · Catalina Foothills
★ 4.6 (1419) · $247.3/night
-
East Sterlingborough Villa
villa · East Sterlingborough
★ 4.9 (1813) · $719.28/night
-
New Cassie Apartment
apartment · New Cassie
★ 4.9 (1496) · $592.91/night
-
Jakubowskimouth Loft
loft · Jakubowskimouth
★ 4.2 (1702) · $1431.63/night
-
Wiegandland Villa
villa · Wiegandland
★ 3.7 (811) · $1103.1/night
-
Arleneborough Cabin
cabin · Arleneborough
★ 3.7 (1074) · $729.98/night
-
Olenchester Loft
loft · Olenchester
★ 2.6 (217) · $877.7/night
-
Jensenworth Condo
condo · Jensenworth
★ 4.8 (1469) · $558.94/night
-
South June Condo
condo · South June
★ 3.8 (474) · $1068.99/night
-
Douglaston House
house · Douglaston
★ 4.7 (640) · $621.28/night
-
Kshlerinside Condo
condo · Kshlerinside
★ 2.8 (589) · $912.49/night
-
Willyside Apartment
apartment · Willyside
★ 4.5 (309) · $1240.3/night
-
Shreveport Cabin
cabin · Shreveport
★ 4.6 (1188) · $424.93/night
-
Murrayburgh Cabin
cabin · Murrayburgh
★ 3.8 (1246) · $395.05/night
-
Twilaworth Cabin
cabin · Twilaworth
★ 2.6 (817) · $108.96/night
-
East Jalyn Loft
loft · East Jalyn
★ 4.1 (40) · $512.99/night
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/properties?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/properties.d.ts https://example-data.com/types/properties.d.ts
import type { Property, ListEnvelope } from "./types/properties";
const res = await fetch(
"https://example-data.com/api/v1/properties?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Property>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 145,
"name": "Centennial Condo",
"slug": "centennial-condo-145",
"type": "condo",
"countryAlpha2": "CA",
"city": "Centennial",
"address": "8725 Mosciski Plain",
"latitude": 46.610938,
"longitude": 32.53061,
"bedrooms": 1,
"bathrooms": 1,
"maxGuests": 4,
"pricePerNight": 1388.14,
"currency": "BRL",
"rating": 3.5,
"ratingCount": 255,
"hostUserId": 103,
"createdAt": "2025-07-07T11:05:56.114Z",
"updatedAt": "2025-12-16T03:53:15.352Z"
},
{
"id": 146,
"name": "Kemmerside House",
"slug": "kemmerside-house-146",
"type": "house",
"countryAlpha2": "TH",
"city": "Kemmerside",
"address": "61716 Jackson Street",
"latitude": -35.473276,
"longitude": 135.081741,
"bedrooms": 0,
"bathrooms": 4,
"maxGuests": 1,
"pricePerNight": 467.39,
"currency": "AED",
"rating": 3.6,
"ratingCount": 406,
"hostUserId": 126,
"createdAt": "2024-08-24T10:24:47.973Z",
"updatedAt": "2026-01-19T14:08:30.528Z"
},
{
"id": 147,
"name": "New Hudsonfield Condo",
"slug": "new-hudsonfield-condo-147",
"type": "condo",
"countryAlpha2": "AU",
"city": "New Hudsonfield",
"address": "53091 Margarett Plaza",
"latitude": -7.487397,
"longitude": 6.373914,
"bedrooms": 6,
"bathrooms": 1,
"maxGuests": 3,
"pricePerNight": 1296.8,
"currency": "JPY",
"rating": 3.9,
"ratingCount": 1125,
"hostUserId": 199,
"createdAt": "2026-01-06T05:32:44.468Z",
"updatedAt": "2026-02-22T07:46:16.525Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/properties?page=7&limit=24",
"first": "/api/v1/properties?page=1&limit=24",
"last": "/api/v1/properties?page=9&limit=24",
"next": "/api/v1/properties?page=8&limit=24",
"prev": "/api/v1/properties?page=6&limit=24"
}
}