example-data.com

properties / #124

Port Graham House

house · Port Graham · $1179.62/night · ★ 2.9 (1716)

4491 Shawn Route

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/124"
)
propertie = res.json()
{
  "id": 124,
  "name": "Port Graham House",
  "slug": "port-graham-house-124",
  "type": "house",
  "countryAlpha2": "CH",
  "city": "Port Graham",
  "address": "4491 Shawn Route",
  "latitude": 48.829604,
  "longitude": 128.94795,
  "bedrooms": 5,
  "bathrooms": 0.5,
  "maxGuests": 9,
  "pricePerNight": 1179.62,
  "currency": "EUR",
  "rating": 2.9,
  "ratingCount": 1716,
  "hostUserId": 154,
  "createdAt": "2025-10-16T17:53:46.653Z",
  "updatedAt": "2026-02-05T23:54:10.475Z"
}
Draftbit