example-data.com
Menu
Browse docs and collections

properties

properties

Page 3 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": 49,
      "name": "Spencerworth Condo",
      "slug": "spencerworth-condo-49",
      "type": "condo",
      "countryAlpha2": "PH",
      "city": "Spencerworth",
      "address": "3155 Odessa Course",
      "latitude": 55.97198,
      "longitude": -18.6536,
      "bedrooms": 0,
      "bathrooms": 0.5,
      "maxGuests": 2,
      "pricePerNight": 302.62,
      "currency": "GBP",
      "rating": 4.6,
      "ratingCount": 1960,
      "hostUserId": 237,
      "createdAt": "2025-03-23T03:28:50.907Z",
      "updatedAt": "2025-07-14T03:31:01.009Z"
    },
    {
      "id": 50,
      "name": "Filibertobury Loft",
      "slug": "filibertobury-loft-50",
      "type": "loft",
      "countryAlpha2": "PH",
      "city": "Filibertobury",
      "address": "7210 Commercial Road",
      "latitude": 33.745661,
      "longitude": 102.97549,
      "bedrooms": 6,
      "bathrooms": 0.5,
      "maxGuests": 4,
      "pricePerNight": 569.07,
      "currency": "AED",
      "rating": 2.7,
      "ratingCount": 1165,
      "hostUserId": 55,
      "createdAt": "2026-05-08T04:58:09.208Z",
      "updatedAt": "2026-05-10T21:51:26.302Z"
    },
    {
      "id": 51,
      "name": "Port Jeffery Condo",
      "slug": "port-jeffery-condo-51",
      "type": "condo",
      "countryAlpha2": "PK",
      "city": "Port Jeffery",
      "address": "5616 Mayfield Road",
      "latitude": -49.014279,
      "longitude": -88.79873,
      "bedrooms": 5,
      "bathrooms": 3.5,
      "maxGuests": 4,
      "pricePerNight": 452.69,
      "currency": "AUD",
      "rating": 4,
      "ratingCount": 1377,
      "hostUserId": 132,
      "createdAt": "2026-01-04T16:18:45.868Z",
      "updatedAt": "2026-04-18T17:34:08.693Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/properties?page=3&limit=24",
    "first": "/api/v1/properties?page=1&limit=24",
    "last": "/api/v1/properties?page=9&limit=24",
    "next": "/api/v1/properties?page=4&limit=24",
    "prev": "/api/v1/properties?page=2&limit=24"
  }
}