Jayneland House
house · Jayneland · $1281.9/night · ★ 3.7 (32)
84143 Alda Cliffs
Overview
properties / #94
house · Jayneland · $1281.9/night · ★ 3.7 (32)
84143 Alda Cliffs
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/94" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/94" ); 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/94"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/94"
)
propertie = res.json() Response
{
"id": 94,
"name": "Jayneland House",
"slug": "jayneland-house-94",
"type": "house",
"countryAlpha2": "GR",
"city": "Jayneland",
"address": "84143 Alda Cliffs",
"latitude": -36.049927,
"longitude": 158.049082,
"bedrooms": 5,
"bathrooms": 3.5,
"maxGuests": 4,
"pricePerNight": 1281.9,
"currency": "MXN",
"rating": 3.7,
"ratingCount": 32,
"hostUserId": 209,
"createdAt": "2025-03-30T02:13:56.887Z",
"updatedAt": "2025-06-02T20:02:47.299Z"
}