example-data.com

properties / #68

Keeblerton Villa

villa · Keeblerton · $747.38/night · ★ 3.3 (1231)

2162 Fay Meadow

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/68"
)
propertie = res.json()
{
  "id": 68,
  "name": "Keeblerton Villa",
  "slug": "keeblerton-villa-68",
  "type": "villa",
  "countryAlpha2": "TR",
  "city": "Keeblerton",
  "address": "2162 Fay Meadow",
  "latitude": 16.492814,
  "longitude": -104.049844,
  "bedrooms": 2,
  "bathrooms": 3.5,
  "maxGuests": 1,
  "pricePerNight": 747.38,
  "currency": "AUD",
  "rating": 3.3,
  "ratingCount": 1231,
  "hostUserId": 157,
  "createdAt": "2025-09-14T00:21:52.656Z",
  "updatedAt": "2026-03-07T16:45:30.476Z"
}
Draftbit