example-data.com

properties

properties

Page 6 of 9.

Coon Rapids Loft

loft · Coon Rapids · $1340/night · ★ 3.6 (157)

3099 West Lane

Collinsshire Villa

villa · Collinsshire · $656.75/night · ★ 3.0 (995)

898 Cristal Cove

Gastonia Apartment

apartment · Gastonia · $786.34/night · ★ 3.4 (847)

296 Canal Street

Port Graham House

house · Port Graham · $1179.62/night · ★ 2.9 (1716)

4491 Shawn Route

Kingfort Cabin

cabin · Kingfort · $700.38/night · ★ 4.6 (142)

41175 Macejkovic Fork

North Theronborough Condo

condo · North Theronborough · $607.52/night · ★ 4.5 (1042)

47632 Raoul Ridges

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