properties
properties
Page 6 of 9.
Overview
-
Coon Rapids Loft
loft · Coon Rapids
★ 3.6 (157) · $1340/night
-
Collinsshire Villa
villa · Collinsshire
★ 3.0 (995) · $656.75/night
-
Gastonia Apartment
apartment · Gastonia
★ 3.4 (847) · $786.34/night
-
Port Graham House
house · Port Graham
★ 2.9 (1716) · $1179.62/night
-
Kingfort Cabin
cabin · Kingfort
★ 4.6 (142) · $700.38/night
-
North Theronborough Condo
condo · North Theronborough
★ 4.5 (1042) · $607.52/night
-
Theresiastead Villa
villa · Theresiastead
★ 4.1 (1352) · $380.66/night
-
Heloisefort Loft
loft · Heloisefort
★ 2.8 (656) · $236.44/night
-
West Kaiamouth Apartment
apartment · West Kaiamouth
★ 4.3 (940) · $414.65/night
-
Nitzschechester Villa
villa · Nitzschechester
★ 3.5 (25) · $1250.63/night
-
Williamsonchester Loft
loft · Williamsonchester
★ 4.4 (33) · $1390.51/night
-
Port Ronaldochester Condo
condo · Port Ronaldochester
★ 4.4 (937) · $324.52/night
-
South Toniside Villa
villa · South Toniside
★ 4.8 (1946) · $1467.99/night
-
East Hartford Cabin
cabin · East Hartford
★ 3.8 (113) · $853.33/night
-
Lake Brett Condo
condo · Lake Brett
★ 3.9 (909) · $512.78/night
-
Flint Villa
villa · Flint
★ 3.0 (1116) · $295.66/night
-
Suzannehaven Villa
villa · Suzannehaven
★ 3.7 (1621) · $990.95/night
-
Cummingsbury Loft
loft · Cummingsbury
★ 4.2 (1581) · $383.49/night
-
Port Geovanychester Condo
condo · Port Geovanychester
★ 3.3 (277) · $523.98/night
-
Kihnworth Villa
villa · Kihnworth
★ 3.9 (715) · $991.37/night
-
Lake Jerrell Apartment
apartment · Lake Jerrell
★ 3.3 (1651) · $1226.06/night
-
Broken Arrow House
house · Broken Arrow
★ 3.7 (1991) · $1044.9/night
-
Kautzercester Condo
condo · Kautzercester
★ 4.5 (1715) · $288.98/night
-
Alphonsofield Condo
condo · Alphonsofield
★ 2.5 (327) · $901.51/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": 121,
"name": "Coon Rapids Loft",
"slug": "coon-rapids-loft-121",
"type": "loft",
"countryAlpha2": "GB",
"city": "Coon Rapids",
"address": "3099 West Lane",
"latitude": 34.956008,
"longitude": 92.079226,
"bedrooms": 1,
"bathrooms": 1,
"maxGuests": 3,
"pricePerNight": 1340,
"currency": "USD",
"rating": 3.6,
"ratingCount": 157,
"hostUserId": 32,
"createdAt": "2026-01-06T16:22:08.786Z",
"updatedAt": "2026-02-10T23:09:26.930Z"
},
{
"id": 122,
"name": "Collinsshire Villa",
"slug": "collinsshire-villa-122",
"type": "villa",
"countryAlpha2": "FR",
"city": "Collinsshire",
"address": "898 Cristal Cove",
"latitude": -31.394072,
"longitude": 105.439748,
"bedrooms": 1,
"bathrooms": 0.5,
"maxGuests": 2,
"pricePerNight": 656.75,
"currency": "GBP",
"rating": 3,
"ratingCount": 995,
"hostUserId": 217,
"createdAt": "2025-05-06T09:44:21.302Z",
"updatedAt": "2026-05-21T00:53:26.141Z"
},
{
"id": 123,
"name": "Gastonia Apartment",
"slug": "gastonia-apartment-123",
"type": "apartment",
"countryAlpha2": "TH",
"city": "Gastonia",
"address": "296 Canal Street",
"latitude": 59.637371,
"longitude": -162.514823,
"bedrooms": 0,
"bathrooms": 4,
"maxGuests": 2,
"pricePerNight": 786.34,
"currency": "GBP",
"rating": 3.4,
"ratingCount": 847,
"hostUserId": 20,
"createdAt": "2026-01-11T16:13:03.774Z",
"updatedAt": "2026-04-09T03:11:56.703Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/properties?page=6&limit=24",
"first": "/api/v1/properties?page=1&limit=24",
"last": "/api/v1/properties?page=9&limit=24",
"next": "/api/v1/properties?page=7&limit=24",
"prev": "/api/v1/properties?page=5&limit=24"
}
}