example-data.com
Menu
Browse docs and collections

properties

properties

Page 7 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": 145,
      "name": "Centennial Condo",
      "slug": "centennial-condo-145",
      "type": "condo",
      "countryAlpha2": "CA",
      "city": "Centennial",
      "address": "8725 Mosciski Plain",
      "latitude": 46.610938,
      "longitude": 32.53061,
      "bedrooms": 1,
      "bathrooms": 1,
      "maxGuests": 4,
      "pricePerNight": 1388.14,
      "currency": "BRL",
      "rating": 3.5,
      "ratingCount": 255,
      "hostUserId": 103,
      "createdAt": "2025-07-07T11:05:56.114Z",
      "updatedAt": "2025-12-16T03:53:15.352Z"
    },
    {
      "id": 146,
      "name": "Kemmerside House",
      "slug": "kemmerside-house-146",
      "type": "house",
      "countryAlpha2": "TH",
      "city": "Kemmerside",
      "address": "61716 Jackson Street",
      "latitude": -35.473276,
      "longitude": 135.081741,
      "bedrooms": 0,
      "bathrooms": 4,
      "maxGuests": 1,
      "pricePerNight": 467.39,
      "currency": "AED",
      "rating": 3.6,
      "ratingCount": 406,
      "hostUserId": 126,
      "createdAt": "2024-08-24T10:24:47.973Z",
      "updatedAt": "2026-01-19T14:08:30.528Z"
    },
    {
      "id": 147,
      "name": "New Hudsonfield Condo",
      "slug": "new-hudsonfield-condo-147",
      "type": "condo",
      "countryAlpha2": "AU",
      "city": "New Hudsonfield",
      "address": "53091 Margarett Plaza",
      "latitude": -7.487397,
      "longitude": 6.373914,
      "bedrooms": 6,
      "bathrooms": 1,
      "maxGuests": 3,
      "pricePerNight": 1296.8,
      "currency": "JPY",
      "rating": 3.9,
      "ratingCount": 1125,
      "hostUserId": 199,
      "createdAt": "2026-01-06T05:32:44.468Z",
      "updatedAt": "2026-02-22T07:46:16.525Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/properties?page=7&limit=24",
    "first": "/api/v1/properties?page=1&limit=24",
    "last": "/api/v1/properties?page=9&limit=24",
    "next": "/api/v1/properties?page=8&limit=24",
    "prev": "/api/v1/properties?page=6&limit=24"
  }
}