example-data.com

properties / #187

East Jakecester Cabin

cabin · East Jakecester · $915.67/night · ★ 3.7 (587)

3573 Berge Mountain

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/187"
)
propertie = res.json()
{
  "id": 187,
  "name": "East Jakecester Cabin",
  "slug": "east-jakecester-cabin-187",
  "type": "cabin",
  "countryAlpha2": "PT",
  "city": "East Jakecester",
  "address": "3573 Berge Mountain",
  "latitude": 4.003125,
  "longitude": 40.319693,
  "bedrooms": 0,
  "bathrooms": 3,
  "maxGuests": 1,
  "pricePerNight": 915.67,
  "currency": "USD",
  "rating": 3.7,
  "ratingCount": 587,
  "hostUserId": 25,
  "createdAt": "2026-02-10T19:32:14.329Z",
  "updatedAt": "2026-02-14T11:29:37.276Z"
}
Draftbit