example-data.com

properties / #54

Goodwinside Villa

villa · Goodwinside · $405.57/night · ★ 3.0 (1963)

35763 Balistreri Knoll

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/54"
)
propertie = res.json()
{
  "id": 54,
  "name": "Goodwinside Villa",
  "slug": "goodwinside-villa-54",
  "type": "villa",
  "countryAlpha2": "ZA",
  "city": "Goodwinside",
  "address": "35763 Balistreri Knoll",
  "latitude": 34.0317,
  "longitude": -165.944846,
  "bedrooms": 1,
  "bathrooms": 0.5,
  "maxGuests": 2,
  "pricePerNight": 405.57,
  "currency": "JPY",
  "rating": 3,
  "ratingCount": 1963,
  "hostUserId": 218,
  "createdAt": "2024-11-04T07:55:47.280Z",
  "updatedAt": "2025-06-19T15:59:43.051Z"
}
Draftbit