example-data.com

properties / #56

Clovis Villa

villa · Clovis · $886.61/night · ★ 4.6 (508)

32383 Altenwerth Track

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/56"
)
propertie = res.json()
{
  "id": 56,
  "name": "Clovis Villa",
  "slug": "clovis-villa-56",
  "type": "villa",
  "countryAlpha2": "FR",
  "city": "Clovis",
  "address": "32383 Altenwerth Track",
  "latitude": 14.740592,
  "longitude": -97.159606,
  "bedrooms": 0,
  "bathrooms": 2,
  "maxGuests": 2,
  "pricePerNight": 886.61,
  "currency": "USD",
  "rating": 4.6,
  "ratingCount": 508,
  "hostUserId": 99,
  "createdAt": "2026-04-20T03:18:01.573Z",
  "updatedAt": "2026-05-20T20:29:36.650Z"
}
Draftbit