North Alicia Cabin
cabin · North Alicia · $519.07/night · ★ 3.7 (519)
776 Schuppe Corner
Overview
properties / #82
cabin · North Alicia · $519.07/night · ★ 3.7 (519)
776 Schuppe Corner
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/82" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/82" ); 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/82"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/82"
)
propertie = res.json() Response
{
"id": 82,
"name": "North Alicia Cabin",
"slug": "north-alicia-cabin-82",
"type": "cabin",
"countryAlpha2": "AU",
"city": "North Alicia",
"address": "776 Schuppe Corner",
"latitude": -24.45651,
"longitude": 42.577519,
"bedrooms": 4,
"bathrooms": 2.5,
"maxGuests": 1,
"pricePerNight": 519.07,
"currency": "MXN",
"rating": 3.7,
"ratingCount": 519,
"hostUserId": 188,
"createdAt": "2024-10-19T04:48:53.713Z",
"updatedAt": "2025-05-14T23:28:52.615Z"
}