example-data.com

properties / #138

Cummingsbury Loft

loft · Cummingsbury · $383.49/night · ★ 4.2 (1581)

2156 Kasey Circle

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/138" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/138"
);
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/138"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/138"
)
propertie = res.json()
{
  "id": 138,
  "name": "Cummingsbury Loft",
  "slug": "cummingsbury-loft-138",
  "type": "loft",
  "countryAlpha2": "DE",
  "city": "Cummingsbury",
  "address": "2156 Kasey Circle",
  "latitude": -54.093982,
  "longitude": 95.787047,
  "bedrooms": 0,
  "bathrooms": 3.5,
  "maxGuests": 1,
  "pricePerNight": 383.49,
  "currency": "USD",
  "rating": 4.2,
  "ratingCount": 1581,
  "hostUserId": 28,
  "createdAt": "2025-04-27T20:30:40.906Z",
  "updatedAt": "2025-12-09T19:23:11.828Z"
}
Draftbit