example-data.com

properties / #116

Oceanside Cabin

cabin · Oceanside · $228.94/night · ★ 4.4 (84)

605 Eleanora Corners

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/116"
)
propertie = res.json()
{
  "id": 116,
  "name": "Oceanside Cabin",
  "slug": "oceanside-cabin-116",
  "type": "cabin",
  "countryAlpha2": "NZ",
  "city": "Oceanside",
  "address": "605 Eleanora Corners",
  "latitude": 54.959222,
  "longitude": -17.561446,
  "bedrooms": 5,
  "bathrooms": 1,
  "maxGuests": 7,
  "pricePerNight": 228.94,
  "currency": "SGD",
  "rating": 4.4,
  "ratingCount": 84,
  "hostUserId": 144,
  "createdAt": "2024-12-12T17:06:48.897Z",
  "updatedAt": "2025-05-28T15:28:16.483Z"
}
Draftbit