Tiannaboro Villa
villa · Tiannaboro · $601.75/night · ★ 2.8 (588)
73321 Ryan Flat
Overview
properties / #41
villa · Tiannaboro · $601.75/night · ★ 2.8 (588)
73321 Ryan Flat
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/41" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/41" ); 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/41"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/41"
)
propertie = res.json() Response
{
"id": 41,
"name": "Tiannaboro Villa",
"slug": "tiannaboro-villa-41",
"type": "villa",
"countryAlpha2": "US",
"city": "Tiannaboro",
"address": "73321 Ryan Flat",
"latitude": -5.688957,
"longitude": 61.875064,
"bedrooms": 4,
"bathrooms": 4,
"maxGuests": 10,
"pricePerNight": 601.75,
"currency": "SGD",
"rating": 2.8,
"ratingCount": 588,
"hostUserId": 231,
"createdAt": "2025-04-23T12:25:05.127Z",
"updatedAt": "2025-12-05T01:21:47.647Z"
}