example-data.com
Menu
Browse docs and collections

Overview

properties / #189

Keeblershire Loft

loft · Keeblershire · $455.63/night · ★ 4.5 (170)

26294 Lind Viaduct

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/properties/189"
);
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/189"
);
const property = (await res.json()) as Property;

Python example

import requests

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

Response

{
  "id": 189,
  "name": "Keeblershire Loft",
  "slug": "keeblershire-loft-189",
  "type": "loft",
  "countryAlpha2": "AT",
  "city": "Keeblershire",
  "address": "26294 Lind Viaduct",
  "latitude": -1.833314,
  "longitude": -67.612798,
  "bedrooms": 0,
  "bathrooms": 4,
  "maxGuests": 2,
  "pricePerNight": 455.63,
  "currency": "USD",
  "rating": 4.5,
  "ratingCount": 170,
  "hostUserId": 187,
  "createdAt": "2025-11-05T08:11:07.023Z",
  "updatedAt": "2026-04-12T15:14:15.342Z"
}