Fort Jermainchester Loft
loft · Fort Jermainchester · $703.41/night · ★ 4.7 (575)
791 Gulgowski River
Overview
properties / #183
loft · Fort Jermainchester · $703.41/night · ★ 4.7 (575)
791 Gulgowski River
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/183" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/183" ); 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/183"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/183"
)
propertie = res.json() Response
{
"id": 183,
"name": "Fort Jermainchester Loft",
"slug": "fort-jermainchester-loft-183",
"type": "loft",
"countryAlpha2": "IS",
"city": "Fort Jermainchester",
"address": "791 Gulgowski River",
"latitude": -21.62626,
"longitude": -78.998579,
"bedrooms": 5,
"bathrooms": 3,
"maxGuests": 1,
"pricePerNight": 703.41,
"currency": "SGD",
"rating": 4.7,
"ratingCount": 575,
"hostUserId": 167,
"createdAt": "2024-06-11T14:32:05.438Z",
"updatedAt": "2024-10-04T04:56:34.052Z"
}