example-data.com

properties / #188

Garrickbury Villa

villa · Garrickbury · $456.37/night · ★ 4.8 (891)

7408 McClure Loop

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/188"
)
propertie = res.json()
{
  "id": 188,
  "name": "Garrickbury Villa",
  "slug": "garrickbury-villa-188",
  "type": "villa",
  "countryAlpha2": "KR",
  "city": "Garrickbury",
  "address": "7408 McClure Loop",
  "latitude": 38.610291,
  "longitude": -119.769171,
  "bedrooms": 4,
  "bathrooms": 2,
  "maxGuests": 1,
  "pricePerNight": 456.37,
  "currency": "CAD",
  "rating": 4.8,
  "ratingCount": 891,
  "hostUserId": 85,
  "createdAt": "2025-12-14T21:52:38.859Z",
  "updatedAt": "2026-04-05T05:13:59.813Z"
}
Draftbit