example-data.com

properties / #118

North Curtshire Loft

loft · North Curtshire · $928.1/night · ★ 3.2 (195)

2255 Leda Lodge

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/118"
)
propertie = res.json()
{
  "id": 118,
  "name": "North Curtshire Loft",
  "slug": "north-curtshire-loft-118",
  "type": "loft",
  "countryAlpha2": "AU",
  "city": "North Curtshire",
  "address": "2255 Leda Lodge",
  "latitude": 54.831154,
  "longitude": 149.191139,
  "bedrooms": 4,
  "bathrooms": 1,
  "maxGuests": 5,
  "pricePerNight": 928.1,
  "currency": "GBP",
  "rating": 3.2,
  "ratingCount": 195,
  "hostUserId": 216,
  "createdAt": "2025-04-06T02:23:59.646Z",
  "updatedAt": "2025-04-28T06:26:11.217Z"
}
Draftbit