example-data.com

properties

properties

Page 9 of 9.

East Cindyville Villa

villa · East Cindyville · $1012.48/night · ★ 3.9 (545)

872 Cormier Inlet

Scottsdale Cabin

cabin · Scottsdale · $210.97/night · ★ 4.6 (604)

970 W Pine Street

Renetown Condo

condo · Renetown · $1489.89/night · ★ 3.5 (418)

2452 Maurice Junctions

Shoreline House

house · Shoreline · $674.74/night · ★ 3.4 (1837)

51339 N Harrison Street

East Shanelle Cabin

cabin · East Shanelle · $383.21/night · ★ 3.7 (496)

6097 N 6th Street

Armstrongville Cabin

cabin · Armstrongville · $396.27/night · ★ 4.7 (1205)

69823 Court Street

Showing first 6 of 8 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": 193,
      "name": "East Cindyville Villa",
      "slug": "east-cindyville-villa-193",
      "type": "villa",
      "countryAlpha2": "TH",
      "city": "East Cindyville",
      "address": "872 Cormier Inlet",
      "latitude": -26.309498,
      "longitude": -13.769247,
      "bedrooms": 4,
      "bathrooms": 0.5,
      "maxGuests": 3,
      "pricePerNight": 1012.48,
      "currency": "GBP",
      "rating": 3.9,
      "ratingCount": 545,
      "hostUserId": 227,
      "createdAt": "2025-04-19T10:21:56.916Z",
      "updatedAt": "2026-05-05T03:29:35.213Z"
    },
    {
      "id": 194,
      "name": "Scottsdale Cabin",
      "slug": "scottsdale-cabin-194",
      "type": "cabin",
      "countryAlpha2": "ET",
      "city": "Scottsdale",
      "address": "970 W Pine Street",
      "latitude": -5.386993,
      "longitude": 48.127323,
      "bedrooms": 1,
      "bathrooms": 2.5,
      "maxGuests": 3,
      "pricePerNight": 210.97,
      "currency": "AED",
      "rating": 4.6,
      "ratingCount": 604,
      "hostUserId": 90,
      "createdAt": "2025-09-25T17:58:16.181Z",
      "updatedAt": "2026-03-31T10:16:03.496Z"
    },
    {
      "id": 195,
      "name": "Renetown Condo",
      "slug": "renetown-condo-195",
      "type": "condo",
      "countryAlpha2": "ET",
      "city": "Renetown",
      "address": "2452 Maurice Junctions",
      "latitude": 33.5695,
      "longitude": 15.501538,
      "bedrooms": 6,
      "bathrooms": 3.5,
      "maxGuests": 10,
      "pricePerNight": 1489.89,
      "currency": "SGD",
      "rating": 3.5,
      "ratingCount": 418,
      "hostUserId": 98,
      "createdAt": "2025-02-27T02:01:34.969Z",
      "updatedAt": "2025-08-20T15:59:04.791Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/properties?page=9",
    "next": null,
    "prev": "/api/v1/properties?page=8"
  }
}
Draftbit