East Micaelaside House
house · East Micaelaside · $934.22/night · ★ 4.4 (258)
82687 Bahringer Club
Overview
properties / #14
house · East Micaelaside · $934.22/night · ★ 4.4 (258)
82687 Bahringer Club
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/14" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/14" ); 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/14"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/14"
)
propertie = res.json() Response
{
"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"
}