West Kaiamouth Apartment
apartment · West Kaiamouth · $414.65/night · ★ 4.3 (940)
7916 Lucinda Avenue
Overview
properties / #129
apartment · West Kaiamouth · $414.65/night · ★ 4.3 (940)
7916 Lucinda Avenue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/129" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/129" ); 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/129"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/129"
)
propertie = res.json() Response
{
"id": 129,
"name": "West Kaiamouth Apartment",
"slug": "west-kaiamouth-apartment-129",
"type": "apartment",
"countryAlpha2": "TR",
"city": "West Kaiamouth",
"address": "7916 Lucinda Avenue",
"latitude": -24.281992,
"longitude": 95.218323,
"bedrooms": 1,
"bathrooms": 1,
"maxGuests": 1,
"pricePerNight": 414.65,
"currency": "CAD",
"rating": 4.3,
"ratingCount": 940,
"hostUserId": 105,
"createdAt": "2024-07-20T22:57:30.290Z",
"updatedAt": "2025-01-12T18:37:53.105Z"
}