example-data.com

properties / #177

West Mollie Villa

villa · West Mollie · $1226.86/night · ★ 2.7 (860)

10325 Bernie Valley

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/177"
)
propertie = res.json()
{
  "id": 177,
  "name": "West Mollie Villa",
  "slug": "west-mollie-villa-177",
  "type": "villa",
  "countryAlpha2": "DE",
  "city": "West Mollie",
  "address": "10325 Bernie Valley",
  "latitude": -4.158576,
  "longitude": -135.181528,
  "bedrooms": 1,
  "bathrooms": 0.5,
  "maxGuests": 4,
  "pricePerNight": 1226.86,
  "currency": "JPY",
  "rating": 2.7,
  "ratingCount": 860,
  "hostUserId": 215,
  "createdAt": "2024-09-07T06:40:27.366Z",
  "updatedAt": "2025-11-21T22:18:23.121Z"
}
Draftbit