example-data.com

properties

properties

Page 3 of 9.

Spencerworth Condo

condo · Spencerworth · $302.62/night · ★ 4.6 (1960)

3155 Odessa Course

Filibertobury Loft

loft · Filibertobury · $569.07/night · ★ 2.7 (1165)

7210 Commercial Road

Port Jeffery Condo

condo · Port Jeffery · $452.69/night · ★ 4.0 (1377)

5616 Mayfield Road

North Ludie House

house · North Ludie · $172.4/night · ★ 4.6 (1304)

376 Forest Road

Ceceliaview Apartment

apartment · Ceceliaview · $289.72/night · ★ 4.2 (1938)

9812 Post Road

Goodwinside Villa

villa · Goodwinside · $405.57/night · ★ 3.0 (1963)

35763 Balistreri Knoll

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": 49,
      "name": "Spencerworth Condo",
      "slug": "spencerworth-condo-49",
      "type": "condo",
      "countryAlpha2": "PH",
      "city": "Spencerworth",
      "address": "3155 Odessa Course",
      "latitude": 55.97198,
      "longitude": -18.6536,
      "bedrooms": 0,
      "bathrooms": 0.5,
      "maxGuests": 2,
      "pricePerNight": 302.62,
      "currency": "GBP",
      "rating": 4.6,
      "ratingCount": 1960,
      "hostUserId": 237,
      "createdAt": "2025-03-23T03:28:50.907Z",
      "updatedAt": "2025-07-14T03:31:01.009Z"
    },
    {
      "id": 50,
      "name": "Filibertobury Loft",
      "slug": "filibertobury-loft-50",
      "type": "loft",
      "countryAlpha2": "PH",
      "city": "Filibertobury",
      "address": "7210 Commercial Road",
      "latitude": 33.745661,
      "longitude": 102.97549,
      "bedrooms": 6,
      "bathrooms": 0.5,
      "maxGuests": 4,
      "pricePerNight": 569.07,
      "currency": "AED",
      "rating": 2.7,
      "ratingCount": 1165,
      "hostUserId": 55,
      "createdAt": "2026-05-08T04:58:09.208Z",
      "updatedAt": "2026-05-10T21:51:26.302Z"
    },
    {
      "id": 51,
      "name": "Port Jeffery Condo",
      "slug": "port-jeffery-condo-51",
      "type": "condo",
      "countryAlpha2": "PK",
      "city": "Port Jeffery",
      "address": "5616 Mayfield Road",
      "latitude": -49.014279,
      "longitude": -88.79873,
      "bedrooms": 5,
      "bathrooms": 3.5,
      "maxGuests": 4,
      "pricePerNight": 452.69,
      "currency": "AUD",
      "rating": 4,
      "ratingCount": 1377,
      "hostUserId": 132,
      "createdAt": "2026-01-04T16:18:45.868Z",
      "updatedAt": "2026-04-18T17:34:08.693Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/properties?page=3",
    "next": "/api/v1/properties?page=4",
    "prev": "/api/v1/properties?page=2"
  }
}
Draftbit