Noestead Villa
villa · Noestead · $89.1/night · ★ 3.6 (1577)
192 Franey Inlet
Overview
properties / #200
villa · Noestead · $89.1/night · ★ 3.6 (1577)
192 Franey Inlet
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/200" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/200" ); 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/200"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/200"
)
propertie = res.json() Response
{
"id": 200,
"name": "Noestead Villa",
"slug": "noestead-villa-200",
"type": "villa",
"countryAlpha2": "IE",
"city": "Noestead",
"address": "192 Franey Inlet",
"latitude": -29.667199,
"longitude": -98.715175,
"bedrooms": 1,
"bathrooms": 2,
"maxGuests": 1,
"pricePerNight": 89.1,
"currency": "JPY",
"rating": 3.6,
"ratingCount": 1577,
"hostUserId": 91,
"createdAt": "2024-08-26T01:29:19.642Z",
"updatedAt": "2026-02-20T17:55:46.052Z"
}