example-data.com

properties / #137

Suzannehaven Villa

villa · Suzannehaven · $990.95/night · ★ 3.7 (1621)

1339 Macejkovic Burg

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/137"
)
propertie = res.json()
{
  "id": 137,
  "name": "Suzannehaven Villa",
  "slug": "suzannehaven-villa-137",
  "type": "villa",
  "countryAlpha2": "GB",
  "city": "Suzannehaven",
  "address": "1339 Macejkovic Burg",
  "latitude": 51.243556,
  "longitude": -32.516214,
  "bedrooms": 5,
  "bathrooms": 3.5,
  "maxGuests": 10,
  "pricePerNight": 990.95,
  "currency": "MXN",
  "rating": 3.7,
  "ratingCount": 1621,
  "hostUserId": 192,
  "createdAt": "2026-02-07T05:19:25.167Z",
  "updatedAt": "2026-03-08T18:01:15.249Z"
}
Draftbit