example-data.com
Menu
Browse docs and collections

Overview

properties / #109

Livonia House

house · Livonia · $935.11/night · ★ 3.8 (1305)

3421 Jerome Centers

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/properties/109" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/properties/109"
);
const property = 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 } from "./types/properties";

const res = await fetch(
  "https://example-data.com/api/v1/properties/109"
);
const property = (await res.json()) as Property;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/109"
)
propertie = res.json()

Response

{
  "id": 109,
  "name": "Livonia House",
  "slug": "livonia-house-109",
  "type": "house",
  "countryAlpha2": "DE",
  "city": "Livonia",
  "address": "3421 Jerome Centers",
  "latitude": -2.31843,
  "longitude": 60.309974,
  "bedrooms": 4,
  "bathrooms": 1.5,
  "maxGuests": 2,
  "pricePerNight": 935.11,
  "currency": "CAD",
  "rating": 3.8,
  "ratingCount": 1305,
  "hostUserId": 144,
  "createdAt": "2025-08-29T13:01:14.960Z",
  "updatedAt": "2025-09-20T09:53:43.118Z"
}