properties
properties
Page 5 of 9.
Overview
-
Philadelphia Condo
condo · Philadelphia
★ 4.6 (1558) · $1207.98/night
-
West Cordie Loft
loft · West Cordie
★ 4.1 (69) · $1082.16/night
-
South Jordan Apartment
apartment · South Jordan
★ 4.5 (402) · $1115.75/night
-
Lake Meagan Apartment
apartment · Lake Meagan
★ 2.5 (2) · $745.89/night
-
Howeton Cabin
cabin · Howeton
★ 3.3 (1307) · $842.37/night
-
Fort Theronbury Condo
condo · Fort Theronbury
★ 4.4 (939) · $491.81/night
-
Fort Maximoberg Villa
villa · Fort Maximoberg
★ 3.5 (419) · $169.37/night
-
Jermaincester Condo
condo · Jermaincester
★ 3.3 (101) · $271.51/night
-
Fort Orinfort Condo
condo · Fort Orinfort
★ 3.8 (342) · $853.35/night
-
Funkland Villa
villa · Funkland
★ 4.0 (1012) · $84.16/night
-
South Hillardbury House
house · South Hillardbury
★ 3.1 (136) · $688.15/night
-
Euless Villa
villa · Euless
★ 3.5 (539) · $865.52/night
-
Livonia House
house · Livonia
★ 3.8 (1305) · $935.11/night
-
Reichelboro Apartment
apartment · Reichelboro
★ 3.6 (1802) · $471.1/night
-
New Luzworth Villa
villa · New Luzworth
★ 3.0 (1193) · $331.36/night
-
Braxtonside Apartment
apartment · Braxtonside
★ 3.5 (1135) · $728.25/night
-
Port Merrittport Loft
loft · Port Merrittport
★ 4.9 (1380) · $1182.45/night
-
New Melisa House
house · New Melisa
★ 4.7 (396) · $54.49/night
-
New Cecelia Loft
loft · New Cecelia
★ 4.9 (1724) · $1027.28/night
-
Oceanside Cabin
cabin · Oceanside
★ 4.4 (84) · $228.94/night
-
Philadelphia House
house · Philadelphia
★ 2.7 (785) · $191.53/night
-
North Curtshire Loft
loft · North Curtshire
★ 3.2 (195) · $928.1/night
-
Port Antwon Villa
villa · Port Antwon
★ 4.8 (1000) · $588.72/night
-
Ernserburgh Apartment
apartment · Ernserburgh
★ 2.6 (1556) · $880.38/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": 97,
"name": "Philadelphia Condo",
"slug": "philadelphia-condo-97",
"type": "condo",
"countryAlpha2": "SG",
"city": "Philadelphia",
"address": "986 Dovie Parkway",
"latitude": -13.044067,
"longitude": -177.800392,
"bedrooms": 5,
"bathrooms": 2.5,
"maxGuests": 8,
"pricePerNight": 1207.98,
"currency": "USD",
"rating": 4.6,
"ratingCount": 1558,
"hostUserId": 196,
"createdAt": "2024-06-17T10:48:34.866Z",
"updatedAt": "2025-10-06T18:20:19.993Z"
},
{
"id": 98,
"name": "West Cordie Loft",
"slug": "west-cordie-loft-98",
"type": "loft",
"countryAlpha2": "SE",
"city": "West Cordie",
"address": "369 The Avenue",
"latitude": 33.505196,
"longitude": 95.366584,
"bedrooms": 6,
"bathrooms": 0.5,
"maxGuests": 4,
"pricePerNight": 1082.16,
"currency": "AED",
"rating": 4.1,
"ratingCount": 69,
"hostUserId": 185,
"createdAt": "2024-11-21T20:18:11.218Z",
"updatedAt": "2024-12-12T14:49:34.186Z"
},
{
"id": 99,
"name": "South Jordan Apartment",
"slug": "south-jordan-apartment-99",
"type": "apartment",
"countryAlpha2": "DE",
"city": "South Jordan",
"address": "5118 Upton Well",
"latitude": -26.24259,
"longitude": 110.34962,
"bedrooms": 3,
"bathrooms": 1.5,
"maxGuests": 6,
"pricePerNight": 1115.75,
"currency": "GBP",
"rating": 4.5,
"ratingCount": 402,
"hostUserId": 193,
"createdAt": "2025-03-26T04:55:17.172Z",
"updatedAt": "2026-01-31T00:47:04.862Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/properties?page=5&limit=24",
"first": "/api/v1/properties?page=1&limit=24",
"last": "/api/v1/properties?page=9&limit=24",
"next": "/api/v1/properties?page=6&limit=24",
"prev": "/api/v1/properties?page=4&limit=24"
}
}