example-data.com

properties / #173

Lake Vincent Villa

villa · Lake Vincent · $1053.36/night · ★ 3.9 (348)

35888 Sipes Hill

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/173"
)
propertie = res.json()
{
  "id": 173,
  "name": "Lake Vincent Villa",
  "slug": "lake-vincent-villa-173",
  "type": "villa",
  "countryAlpha2": "NG",
  "city": "Lake Vincent",
  "address": "35888 Sipes Hill",
  "latitude": 3.40643,
  "longitude": 23.251033,
  "bedrooms": 6,
  "bathrooms": 4,
  "maxGuests": 12,
  "pricePerNight": 1053.36,
  "currency": "BRL",
  "rating": 3.9,
  "ratingCount": 348,
  "hostUserId": 217,
  "createdAt": "2025-09-29T22:41:34.761Z",
  "updatedAt": "2026-04-04T08:46:49.931Z"
}
Draftbit