Martinland House
house · Martinland · $671.87/night · ★ 3.0 (1418)
368 Fay Cape
Overview
properties / #178
house · Martinland · $671.87/night · ★ 3.0 (1418)
368 Fay Cape
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/178" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/178" ); 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/178"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/178"
)
propertie = res.json() Response
{
"id": 178,
"name": "Martinland House",
"slug": "martinland-house-178",
"type": "house",
"countryAlpha2": "ID",
"city": "Martinland",
"address": "368 Fay Cape",
"latitude": 52.368945,
"longitude": -85.342894,
"bedrooms": 1,
"bathrooms": 3,
"maxGuests": 2,
"pricePerNight": 671.87,
"currency": "USD",
"rating": 3,
"ratingCount": 1418,
"hostUserId": 190,
"createdAt": "2025-06-07T00:53:56.853Z",
"updatedAt": "2025-07-20T16:22:27.892Z"
}