example-data.com
Menu
Browse docs and collections

properties

properties

Page 5 of 9.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/properties?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/properties?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/properties.d.ts https://example-data.com/types/properties.d.ts
import type { Property, ListEnvelope } from "./types/properties";

const res = await fetch(
  "https://example-data.com/api/v1/properties?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Property>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/properties",
    params={"limit": 25},
)
data = res.json()

Response

{
  "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&limit=24",
    "first": "/api/v1/properties?page=1&limit=24",
    "last": "/api/v1/properties?page=9&limit=24",
    "next": "/api/v1/properties?page=6&limit=24",
    "prev": "/api/v1/properties?page=4&limit=24"
  }
}