example-data.com

properties / #159

Olenchester Loft

loft · Olenchester · $877.7/night · ★ 2.6 (217)

227 Gutmann Plains

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/159" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/159"
);
const propertie = await res.json();
import type { Propertie } from "https://example-data.com/types/properties.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/properties/159"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/159"
)
propertie = res.json()
{
  "id": 159,
  "name": "Olenchester Loft",
  "slug": "olenchester-loft-159",
  "type": "loft",
  "countryAlpha2": "BR",
  "city": "Olenchester",
  "address": "227 Gutmann Plains",
  "latitude": 23.693168,
  "longitude": 98.518149,
  "bedrooms": 1,
  "bathrooms": 2,
  "maxGuests": 3,
  "pricePerNight": 877.7,
  "currency": "GBP",
  "rating": 2.6,
  "ratingCount": 217,
  "hostUserId": 191,
  "createdAt": "2024-07-28T17:02:38.509Z",
  "updatedAt": "2025-06-10T07:36:26.865Z"
}
Draftbit