example-data.com

properties / #166

Murrayburgh Cabin

cabin · Murrayburgh · $395.05/night · ★ 3.8 (1246)

581 Berneice Glen

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/166"
)
propertie = res.json()
{
  "id": 166,
  "name": "Murrayburgh Cabin",
  "slug": "murrayburgh-cabin-166",
  "type": "cabin",
  "countryAlpha2": "KR",
  "city": "Murrayburgh",
  "address": "581 Berneice Glen",
  "latitude": 28.444036,
  "longitude": 72.791307,
  "bedrooms": 3,
  "bathrooms": 3.5,
  "maxGuests": 2,
  "pricePerNight": 395.05,
  "currency": "GBP",
  "rating": 3.8,
  "ratingCount": 1246,
  "hostUserId": 34,
  "createdAt": "2024-11-21T11:51:05.106Z",
  "updatedAt": "2026-01-25T14:53:22.764Z"
}
Draftbit