example-data.com

properties / #44

Cruickshankview Apartment

apartment · Cruickshankview · $192.74/night · ★ 3.2 (1019)

53185 County Road

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/44"
)
propertie = res.json()
{
  "id": 44,
  "name": "Cruickshankview Apartment",
  "slug": "cruickshankview-apartment-44",
  "type": "apartment",
  "countryAlpha2": "PL",
  "city": "Cruickshankview",
  "address": "53185 County Road",
  "latitude": -52.061122,
  "longitude": 39.936444,
  "bedrooms": 2,
  "bathrooms": 2.5,
  "maxGuests": 5,
  "pricePerNight": 192.74,
  "currency": "EUR",
  "rating": 3.2,
  "ratingCount": 1019,
  "hostUserId": 144,
  "createdAt": "2026-04-27T11:06:39.669Z",
  "updatedAt": "2026-05-20T18:20:13.389Z"
}
Draftbit