East Shanelle Cabin
cabin · East Shanelle · $383.21/night · ★ 3.7 (496)
6097 N 6th Street
Overview
properties / #197
cabin · East Shanelle · $383.21/night · ★ 3.7 (496)
6097 N 6th Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/197" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/197" ); 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/197"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/197"
)
propertie = res.json() Response
{
"id": 197,
"name": "East Shanelle Cabin",
"slug": "east-shanelle-cabin-197",
"type": "cabin",
"countryAlpha2": "AR",
"city": "East Shanelle",
"address": "6097 N 6th Street",
"latitude": 58.371495,
"longitude": -40.514083,
"bedrooms": 5,
"bathrooms": 2,
"maxGuests": 2,
"pricePerNight": 383.21,
"currency": "GBP",
"rating": 3.7,
"ratingCount": 496,
"hostUserId": 70,
"createdAt": "2025-04-20T11:09:08.937Z",
"updatedAt": "2025-10-25T02:34:27.449Z"
}