Bradtkefield House
house · Bradtkefield · $1197.31/night · ★ 3.1 (1401)
74304 W 10th Street
Overview
properties / #150
house · Bradtkefield · $1197.31/night · ★ 3.1 (1401)
74304 W 10th Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/150" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/150" ); 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/150"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/150"
)
propertie = res.json() Response
{
"id": 150,
"name": "Bradtkefield House",
"slug": "bradtkefield-house-150",
"type": "house",
"countryAlpha2": "NL",
"city": "Bradtkefield",
"address": "74304 W 10th Street",
"latitude": 36.99642,
"longitude": -21.71108,
"bedrooms": 5,
"bathrooms": 2.5,
"maxGuests": 12,
"pricePerNight": 1197.31,
"currency": "AED",
"rating": 3.1,
"ratingCount": 1401,
"hostUserId": 175,
"createdAt": "2024-08-09T18:59:58.606Z",
"updatedAt": "2026-04-13T18:00:37.320Z"
}