properties
properties
Page 2 of 9.
Overview
-
Yostside Condo
condo · Yostside
★ 2.9 (1930) · $58.46/night
-
Joannyburgh House
house · Joannyburgh
★ 4.5 (1281) · $1208.86/night
-
Huntington Park Villa
villa · Huntington Park
★ 2.9 (161) · $244.67/night
-
Charleston Condo
condo · Charleston
★ 5.0 (881) · $980.69/night
-
Harveystead Loft
loft · Harveystead
★ 3.6 (1448) · $1258.76/night
-
North Braden Condo
condo · North Braden
★ 3.7 (560) · $661.75/night
-
South Kalebcester Villa
villa · South Kalebcester
★ 4.8 (823) · $1072.3/night
-
Fort Darenfort Condo
condo · Fort Darenfort
★ 3.4 (1128) · $1332.17/night
-
Raquelburgh Villa
villa · Raquelburgh
★ 3.3 (453) · $118.08/night
-
New Zora Apartment
apartment · New Zora
★ 2.6 (1253) · $1004.26/night
-
North Josue Loft
loft · North Josue
★ 4.9 (401) · $361.31/night
-
South Aileenfield Apartment
apartment · South Aileenfield
★ 3.4 (1531) · $420.69/night
-
Port Bettieworth Loft
loft · Port Bettieworth
★ 4.5 (189) · $110.88/night
-
Kellyfield Loft
loft · Kellyfield
★ 3.6 (1826) · $505.5/night
-
Gregoryton Villa
villa · Gregoryton
★ 2.7 (930) · $1364.15/night
-
Lelaport Condo
condo · Lelaport
★ 4.6 (1288) · $481.22/night
-
Tiannaboro Villa
villa · Tiannaboro
★ 2.8 (588) · $601.75/night
-
New Ignatius Apartment
apartment · New Ignatius
★ 2.6 (235) · $1457.76/night
-
Considineworth House
house · Considineworth
★ 4.4 (902) · $106.93/night
-
Cruickshankview Apartment
apartment · Cruickshankview
★ 3.2 (1019) · $192.74/night
-
Davenport Cabin
cabin · Davenport
★ 4.2 (61) · $881.34/night
-
New Terrillfurt Condo
condo · New Terrillfurt
★ 5.0 (1729) · $89.22/night
-
San Bernardino Cabin
cabin · San Bernardino
★ 2.9 (1886) · $429.41/night
-
Port Vernashire House
house · Port Vernashire
★ 4.5 (693) · $481.03/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": 25,
"name": "Yostside Condo",
"slug": "yostside-condo-25",
"type": "condo",
"countryAlpha2": "SA",
"city": "Yostside",
"address": "7112 Baker Street",
"latitude": -19.185023,
"longitude": -21.98831,
"bedrooms": 6,
"bathrooms": 2.5,
"maxGuests": 6,
"pricePerNight": 58.46,
"currency": "MXN",
"rating": 2.9,
"ratingCount": 1930,
"hostUserId": 138,
"createdAt": "2025-12-14T01:39:32.207Z",
"updatedAt": "2025-12-15T11:36:20.424Z"
},
{
"id": 26,
"name": "Joannyburgh House",
"slug": "joannyburgh-house-26",
"type": "house",
"countryAlpha2": "BE",
"city": "Joannyburgh",
"address": "3221 Lueilwitz Rue",
"latitude": -32.106351,
"longitude": -103.474961,
"bedrooms": 4,
"bathrooms": 4,
"maxGuests": 7,
"pricePerNight": 1208.86,
"currency": "JPY",
"rating": 4.5,
"ratingCount": 1281,
"hostUserId": 193,
"createdAt": "2025-11-23T06:54:50.345Z",
"updatedAt": "2026-01-17T14:41:21.615Z"
},
{
"id": 27,
"name": "Huntington Park Villa",
"slug": "huntington-park-villa-27",
"type": "villa",
"countryAlpha2": "IS",
"city": "Huntington Park",
"address": "6554 Main Road",
"latitude": 6.738515,
"longitude": -136.454347,
"bedrooms": 4,
"bathrooms": 0.5,
"maxGuests": 5,
"pricePerNight": 244.67,
"currency": "GBP",
"rating": 2.9,
"ratingCount": 161,
"hostUserId": 174,
"createdAt": "2025-09-06T04:18:37.332Z",
"updatedAt": "2026-01-23T10:46:08.086Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/properties?page=2&limit=24",
"first": "/api/v1/properties?page=1&limit=24",
"last": "/api/v1/properties?page=9&limit=24",
"next": "/api/v1/properties?page=3&limit=24",
"prev": "/api/v1/properties?page=1&limit=24"
}
}