East Jalyn Loft
loft · East Jalyn · $512.99/night · ★ 4.1 (40)
408 Connelly Shoals
Overview
properties / #168
loft · East Jalyn · $512.99/night · ★ 4.1 (40)
408 Connelly Shoals
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/168" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/168" ); 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/168"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/168"
)
propertie = res.json() Response
{
"id": 168,
"name": "East Jalyn Loft",
"slug": "east-jalyn-loft-168",
"type": "loft",
"countryAlpha2": "CN",
"city": "East Jalyn",
"address": "408 Connelly Shoals",
"latitude": -9.998959,
"longitude": 29.095483,
"bedrooms": 1,
"bathrooms": 1.5,
"maxGuests": 4,
"pricePerNight": 512.99,
"currency": "AUD",
"rating": 4.1,
"ratingCount": 40,
"hostUserId": 83,
"createdAt": "2024-10-15T15:21:20.697Z",
"updatedAt": "2026-05-12T03:01:28.329Z"
}