example-data.com

properties / #131

Williamsonchester Loft

loft · Williamsonchester · $1390.51/night · ★ 4.4 (33)

3140 Shields Forest

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/131"
)
propertie = res.json()
{
  "id": 131,
  "name": "Williamsonchester Loft",
  "slug": "williamsonchester-loft-131",
  "type": "loft",
  "countryAlpha2": "VN",
  "city": "Williamsonchester",
  "address": "3140 Shields Forest",
  "latitude": -8.194865,
  "longitude": -109.688759,
  "bedrooms": 2,
  "bathrooms": 2.5,
  "maxGuests": 2,
  "pricePerNight": 1390.51,
  "currency": "MXN",
  "rating": 4.4,
  "ratingCount": 33,
  "hostUserId": 109,
  "createdAt": "2025-10-08T13:50:40.376Z",
  "updatedAt": "2026-03-01T12:10:20.145Z"
}
Draftbit