Bartellville House
house · Bartellville · $838.76/night · ★ 4.8 (1791)
9954 Meadow Close
Overview
properties / #69
house · Bartellville · $838.76/night · ★ 4.8 (1791)
9954 Meadow Close
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/69" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/69" ); 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/69"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/69"
)
propertie = res.json() Response
{
"id": 69,
"name": "Bartellville House",
"slug": "bartellville-house-69",
"type": "house",
"countryAlpha2": "VN",
"city": "Bartellville",
"address": "9954 Meadow Close",
"latitude": -39.793153,
"longitude": 81.045477,
"bedrooms": 4,
"bathrooms": 3,
"maxGuests": 4,
"pricePerNight": 838.76,
"currency": "CAD",
"rating": 4.8,
"ratingCount": 1791,
"hostUserId": 111,
"createdAt": "2024-08-14T18:23:15.264Z",
"updatedAt": "2024-11-30T09:08:04.056Z"
}