example-data.com

properties / #149

South Lilian Villa

villa · South Lilian · $1487.67/night · ★ 4.3 (1457)

1694 Little Knolls

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/149"
)
propertie = res.json()
{
  "id": 149,
  "name": "South Lilian Villa",
  "slug": "south-lilian-villa-149",
  "type": "villa",
  "countryAlpha2": "AE",
  "city": "South Lilian",
  "address": "1694 Little Knolls",
  "latitude": -45.681441,
  "longitude": 44.07217,
  "bedrooms": 2,
  "bathrooms": 1.5,
  "maxGuests": 4,
  "pricePerNight": 1487.67,
  "currency": "BRL",
  "rating": 4.3,
  "ratingCount": 1457,
  "hostUserId": 237,
  "createdAt": "2025-05-09T14:04:58.794Z",
  "updatedAt": "2025-05-23T11:42:06.738Z"
}
Draftbit