East Cindyville Villa
villa · East Cindyville · $1012.48/night · ★ 3.9 (545)
872 Cormier Inlet
Overview
properties / #193
villa · East Cindyville · $1012.48/night · ★ 3.9 (545)
872 Cormier Inlet
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/193" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/193" ); 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/193"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/193"
)
propertie = res.json() Response
{
"id": 193,
"name": "East Cindyville Villa",
"slug": "east-cindyville-villa-193",
"type": "villa",
"countryAlpha2": "TH",
"city": "East Cindyville",
"address": "872 Cormier Inlet",
"latitude": -26.309498,
"longitude": -13.769247,
"bedrooms": 4,
"bathrooms": 0.5,
"maxGuests": 3,
"pricePerNight": 1012.48,
"currency": "GBP",
"rating": 3.9,
"ratingCount": 545,
"hostUserId": 227,
"createdAt": "2025-04-19T10:21:56.916Z",
"updatedAt": "2026-05-05T03:29:35.213Z"
}