Kshlerinside Condo
condo · Kshlerinside · $912.49/night · ★ 2.8 (589)
625 Martin Luther King Drive
Overview
properties / #163
condo · Kshlerinside · $912.49/night · ★ 2.8 (589)
625 Martin Luther King Drive
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/163" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/163" ); 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/163"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/163"
)
propertie = res.json() Response
{
"id": 163,
"name": "Kshlerinside Condo",
"slug": "kshlerinside-condo-163",
"type": "condo",
"countryAlpha2": "BE",
"city": "Kshlerinside",
"address": "625 Martin Luther King Drive",
"latitude": -8.44216,
"longitude": -58.023693,
"bedrooms": 4,
"bathrooms": 2,
"maxGuests": 3,
"pricePerNight": 912.49,
"currency": "GBP",
"rating": 2.8,
"ratingCount": 589,
"hostUserId": 69,
"createdAt": "2024-07-24T01:32:16.641Z",
"updatedAt": "2025-02-02T04:54:47.831Z"
}