Murrayburgh Cabin
cabin · Murrayburgh · $395.05/night · ★ 3.8 (1246)
581 Berneice Glen
Overview
properties / #166
cabin · Murrayburgh · $395.05/night · ★ 3.8 (1246)
581 Berneice Glen
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/166" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/166" ); const property = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/properties.d.ts https://example-data.com/types/properties.d.ts
import type { Property } from "./types/properties";
const res = await fetch(
"https://example-data.com/api/v1/properties/166"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/166"
)
propertie = res.json() Response
{
"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"
}