Broken Arrow House
house · Broken Arrow · $1044.9/night · ★ 3.7 (1991)
40385 Cumberland Street
properties / #142
house · Broken Arrow · $1044.9/night · ★ 3.7 (1991)
40385 Cumberland Street
curl -sS \
"https://example-data.com/api/v1/properties/142" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/142"
);
const propertie = await res.json();import type { Propertie } from "https://example-data.com/types/properties.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/properties/142"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/142"
)
propertie = res.json() {
"id": 142,
"name": "Broken Arrow House",
"slug": "broken-arrow-house-142",
"type": "house",
"countryAlpha2": "AT",
"city": "Broken Arrow",
"address": "40385 Cumberland Street",
"latitude": 22.485378,
"longitude": -163.255116,
"bedrooms": 4,
"bathrooms": 0.5,
"maxGuests": 8,
"pricePerNight": 1044.9,
"currency": "JPY",
"rating": 3.7,
"ratingCount": 1991,
"hostUserId": 112,
"createdAt": "2024-12-30T08:31:47.086Z",
"updatedAt": "2025-04-23T12:36:12.463Z"
}