Broken Arrow House
house · Broken Arrow · $1044.9/night · ★ 3.7 (1991)
40385 Cumberland Street
Overview
properties / #142
house · Broken Arrow · $1044.9/night · ★ 3.7 (1991)
40385 Cumberland Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/142" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/142" ); 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/142"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/142"
)
propertie = res.json() Response
{
"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"
}