example-data.com

properties / #29

Harveystead Loft

loft · Harveystead · $1258.76/night · ★ 3.6 (1448)

2517 Waelchi Park

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/29" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/29"
);
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/29"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/29"
)
propertie = res.json()
{
  "id": 29,
  "name": "Harveystead Loft",
  "slug": "harveystead-loft-29",
  "type": "loft",
  "countryAlpha2": "FI",
  "city": "Harveystead",
  "address": "2517 Waelchi Park",
  "latitude": 33.335432,
  "longitude": 45.861839,
  "bedrooms": 0,
  "bathrooms": 0.5,
  "maxGuests": 1,
  "pricePerNight": 1258.76,
  "currency": "BRL",
  "rating": 3.6,
  "ratingCount": 1448,
  "hostUserId": 68,
  "createdAt": "2025-03-29T07:37:20.252Z",
  "updatedAt": "2025-09-26T23:10:31.022Z"
}
Draftbit