example-data.com
Menu
Browse docs and collections

Overview

properties / #135

Lake Brett Condo

condo · Lake Brett · $512.78/night · ★ 3.9 (909)

94455 Hauck Estate

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/properties/135" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/properties/135"
);
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/135"
);
const property = (await res.json()) as Property;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/135"
)
propertie = res.json()

Response

{
  "id": 135,
  "name": "Lake Brett Condo",
  "slug": "lake-brett-condo-135",
  "type": "condo",
  "countryAlpha2": "MY",
  "city": "Lake Brett",
  "address": "94455 Hauck Estate",
  "latitude": -38.044813,
  "longitude": -19.589791,
  "bedrooms": 3,
  "bathrooms": 2,
  "maxGuests": 8,
  "pricePerNight": 512.78,
  "currency": "MXN",
  "rating": 3.9,
  "ratingCount": 909,
  "hostUserId": 105,
  "createdAt": "2024-06-17T18:41:52.887Z",
  "updatedAt": "2025-06-23T14:43:05.566Z"
}