example-data.com

properties / #16

Lake Sylvanport House

house · Lake Sylvanport · $489.87/night · ★ 2.6 (1072)

665 Green Close

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/16"
)
propertie = res.json()
{
  "id": 16,
  "name": "Lake Sylvanport House",
  "slug": "lake-sylvanport-house-16",
  "type": "house",
  "countryAlpha2": "TR",
  "city": "Lake Sylvanport",
  "address": "665 Green Close",
  "latitude": 6.36734,
  "longitude": -85.339787,
  "bedrooms": 6,
  "bathrooms": 3.5,
  "maxGuests": 4,
  "pricePerNight": 489.87,
  "currency": "MXN",
  "rating": 2.6,
  "ratingCount": 1072,
  "hostUserId": 37,
  "createdAt": "2026-01-10T17:35:46.023Z",
  "updatedAt": "2026-04-06T20:13:25.481Z"
}
Draftbit