example-data.com
Menu
Browse docs and collections

Overview

properties / #64

Willhaven Loft

loft · Willhaven · $573.19/night · ★ 4.6 (1928)

234 Muriel Trail

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 64,
  "name": "Willhaven Loft",
  "slug": "willhaven-loft-64",
  "type": "loft",
  "countryAlpha2": "PT",
  "city": "Willhaven",
  "address": "234 Muriel Trail",
  "latitude": -31.550191,
  "longitude": -171.141737,
  "bedrooms": 2,
  "bathrooms": 1,
  "maxGuests": 5,
  "pricePerNight": 573.19,
  "currency": "MXN",
  "rating": 4.6,
  "ratingCount": 1928,
  "hostUserId": 71,
  "createdAt": "2025-10-24T00:33:34.164Z",
  "updatedAt": "2025-10-27T16:56:48.725Z"
}