Port Merrittport Loft
loft · Port Merrittport · $1182.45/night · ★ 4.9 (1380)
155 The Copse
Overview
properties / #113
loft · Port Merrittport · $1182.45/night · ★ 4.9 (1380)
155 The Copse
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/113" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/113" ); 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/113"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/113"
)
propertie = res.json() Response
{
"id": 113,
"name": "Port Merrittport Loft",
"slug": "port-merrittport-loft-113",
"type": "loft",
"countryAlpha2": "CO",
"city": "Port Merrittport",
"address": "155 The Copse",
"latitude": 16.106526,
"longitude": -169.806756,
"bedrooms": 5,
"bathrooms": 3,
"maxGuests": 4,
"pricePerNight": 1182.45,
"currency": "JPY",
"rating": 4.9,
"ratingCount": 1380,
"hostUserId": 7,
"createdAt": "2025-06-28T06:56:41.800Z",
"updatedAt": "2025-12-07T06:30:53.699Z"
}