example-data.com

properties / #66

West Odessastead Apartment

apartment · West Odessastead · $211.4/night · ★ 4.1 (473)

1110 Lueilwitz Squares

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/66"
)
propertie = res.json()
{
  "id": 66,
  "name": "West Odessastead Apartment",
  "slug": "west-odessastead-apartment-66",
  "type": "apartment",
  "countryAlpha2": "US",
  "city": "West Odessastead",
  "address": "1110 Lueilwitz Squares",
  "latitude": 26.781857,
  "longitude": -14.42599,
  "bedrooms": 2,
  "bathrooms": 2,
  "maxGuests": 4,
  "pricePerNight": 211.4,
  "currency": "EUR",
  "rating": 4.1,
  "ratingCount": 473,
  "hostUserId": 226,
  "createdAt": "2025-04-16T19:56:15.788Z",
  "updatedAt": "2026-01-06T19:29:12.941Z"
}
Draftbit