example-data.com

properties / #199

Port Mervinborough Villa

villa · Port Mervinborough · $1310.97/night · ★ 2.8 (1347)

7532 Windler Groves

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/199"
)
propertie = res.json()
{
  "id": 199,
  "name": "Port Mervinborough Villa",
  "slug": "port-mervinborough-villa-199",
  "type": "villa",
  "countryAlpha2": "JP",
  "city": "Port Mervinborough",
  "address": "7532 Windler Groves",
  "latitude": -51.071949,
  "longitude": 36.542509,
  "bedrooms": 6,
  "bathrooms": 2.5,
  "maxGuests": 13,
  "pricePerNight": 1310.97,
  "currency": "USD",
  "rating": 2.8,
  "ratingCount": 1347,
  "hostUserId": 209,
  "createdAt": "2025-08-08T21:51:09.730Z",
  "updatedAt": "2026-03-05T08:01:10.099Z"
}
Draftbit