Port Graham House
house · Port Graham · $1179.62/night · ★ 2.9 (1716)
4491 Shawn Route
Overview
properties / #124
house · Port Graham · $1179.62/night · ★ 2.9 (1716)
4491 Shawn Route
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/124" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/124" ); 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/124"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/124"
)
propertie = res.json() Response
{
"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"
}