example-data.com

properties

properties

Page 4 of 9.

New Reillyville Condo

condo · New Reillyville · $711.12/night · ★ 3.7 (1917)

7433 Kelsie Ramp

Fort Ova Apartment

apartment · Fort Ova · $404.69/night · ★ 3.5 (1750)

9643 Parisian Bypass

New Johathan Condo

condo · New Johathan · $1196.12/night · ★ 3.1 (142)

682 Gutmann Glen

Thousand Oaks Villa

villa · Thousand Oaks · $1437.29/night · ★ 3.0 (428)

63714 Otha Rest

Barnstable Town Condo

condo · Barnstable Town · $1270.47/night · ★ 4.0 (1944)

3543 7th Avenue

North Randalview Cabin

cabin · North Randalview · $452.72/night · ★ 3.1 (1221)

2803 Cartwright Islands

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": 73,
      "name": "New Reillyville Condo",
      "slug": "new-reillyville-condo-73",
      "type": "condo",
      "countryAlpha2": "GR",
      "city": "New Reillyville",
      "address": "7433 Kelsie Ramp",
      "latitude": 49.167261,
      "longitude": -44.433185,
      "bedrooms": 4,
      "bathrooms": 1,
      "maxGuests": 6,
      "pricePerNight": 711.12,
      "currency": "AED",
      "rating": 3.7,
      "ratingCount": 1917,
      "hostUserId": 156,
      "createdAt": "2024-08-12T11:28:39.204Z",
      "updatedAt": "2025-04-28T01:35:16.604Z"
    },
    {
      "id": 74,
      "name": "Fort Ova Apartment",
      "slug": "fort-ova-apartment-74",
      "type": "apartment",
      "countryAlpha2": "NG",
      "city": "Fort Ova",
      "address": "9643 Parisian Bypass",
      "latitude": -8.279808,
      "longitude": -47.58464,
      "bedrooms": 1,
      "bathrooms": 4,
      "maxGuests": 2,
      "pricePerNight": 404.69,
      "currency": "GBP",
      "rating": 3.5,
      "ratingCount": 1750,
      "hostUserId": 146,
      "createdAt": "2025-04-19T04:19:19.991Z",
      "updatedAt": "2025-09-06T08:50:29.962Z"
    },
    {
      "id": 75,
      "name": "New Johathan Condo",
      "slug": "new-johathan-condo-75",
      "type": "condo",
      "countryAlpha2": "CN",
      "city": "New Johathan",
      "address": "682 Gutmann Glen",
      "latitude": -47.376402,
      "longitude": 69.716738,
      "bedrooms": 1,
      "bathrooms": 4,
      "maxGuests": 1,
      "pricePerNight": 1196.12,
      "currency": "AED",
      "rating": 3.1,
      "ratingCount": 142,
      "hostUserId": 60,
      "createdAt": "2024-09-21T17:08:11.698Z",
      "updatedAt": "2026-03-23T02:16:46.545Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/properties?page=4",
    "next": "/api/v1/properties?page=5",
    "prev": "/api/v1/properties?page=3"
  }
}
Draftbit