example-data.com

properties

properties

Page 7 of 9.

Centennial Condo

condo · Centennial · $1388.14/night · ★ 3.5 (255)

8725 Mosciski Plain

Kemmerside House

house · Kemmerside · $467.39/night · ★ 3.6 (406)

61716 Jackson Street

New Hudsonfield Condo

condo · New Hudsonfield · $1296.8/night · ★ 3.9 (1125)

53091 Margarett Plaza

Sarahbury Cabin

cabin · Sarahbury · $454.37/night · ★ 4.2 (364)

544 Ernie Overpass

South Lilian Villa

villa · South Lilian · $1487.67/night · ★ 4.3 (1457)

1694 Little Knolls

Bradtkefield House

house · Bradtkefield · $1197.31/night · ★ 3.1 (1401)

74304 W 10th Street

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/properties?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/properties?limit=25"
);
const { data, meta } = await res.json();
import type { Propertie, ListEnvelope } from "https://example-data.com/types/properties.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/properties?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Propertie>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties",
    params={"limit": 25},
)
data = res.json()
{
  "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",
    "next": "/api/v1/properties?page=8",
    "prev": "/api/v1/properties?page=6"
  }
}
Draftbit