East Micaelaside House
house · East Micaelaside · $934.22/night · ★ 4.4 (258)
82687 Bahringer Club
properties / #14
house · East Micaelaside · $934.22/night · ★ 4.4 (258)
82687 Bahringer Club
curl -sS \
"https://example-data.com/api/v1/properties/14" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/14"
);
const propertie = await res.json();import type { Propertie } from "https://example-data.com/types/properties.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/properties/14"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/14"
)
propertie = res.json() {
"id": 14,
"name": "East Micaelaside House",
"slug": "east-micaelaside-house-14",
"type": "house",
"countryAlpha2": "AR",
"city": "East Micaelaside",
"address": "82687 Bahringer Club",
"latitude": -0.479189,
"longitude": -36.51704,
"bedrooms": 5,
"bathrooms": 0.5,
"maxGuests": 1,
"pricePerNight": 934.22,
"currency": "MXN",
"rating": 4.4,
"ratingCount": 258,
"hostUserId": 106,
"createdAt": "2026-03-20T05:14:57.091Z",
"updatedAt": "2026-04-26T01:17:49.757Z"
}