example-data.com

properties / #167

Twilaworth Cabin

cabin · Twilaworth · $108.96/night · ★ 2.6 (817)

947 Jubilee Close

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/167"
)
propertie = res.json()
{
  "id": 167,
  "name": "Twilaworth Cabin",
  "slug": "twilaworth-cabin-167",
  "type": "cabin",
  "countryAlpha2": "CH",
  "city": "Twilaworth",
  "address": "947 Jubilee Close",
  "latitude": -47.881434,
  "longitude": 106.416905,
  "bedrooms": 6,
  "bathrooms": 2.5,
  "maxGuests": 10,
  "pricePerNight": 108.96,
  "currency": "AED",
  "rating": 2.6,
  "ratingCount": 817,
  "hostUserId": 218,
  "createdAt": "2026-04-24T13:04:14.496Z",
  "updatedAt": "2026-04-26T13:33:57.859Z"
}
Draftbit