example-data.com

properties

properties

Page 5 of 9.

Philadelphia Condo

condo · Philadelphia · $1207.98/night · ★ 4.6 (1558)

986 Dovie Parkway

West Cordie Loft

loft · West Cordie · $1082.16/night · ★ 4.1 (69)

369 The Avenue

South Jordan Apartment

apartment · South Jordan · $1115.75/night · ★ 4.5 (402)

5118 Upton Well

Lake Meagan Apartment

apartment · Lake Meagan · $745.89/night · ★ 2.5 (2)

600 McClure Flat

Howeton Cabin

cabin · Howeton · $842.37/night · ★ 3.3 (1307)

1831 Della Inlet

Fort Theronbury Condo

condo · Fort Theronbury · $491.81/night · ★ 4.4 (939)

9142 Jerde Motorway

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": 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",
    "next": "/api/v1/properties?page=6",
    "prev": "/api/v1/properties?page=4"
  }
}
Draftbit