example-data.com

properties / #27

Huntington Park Villa

villa · Huntington Park · $244.67/night · ★ 2.9 (161)

6554 Main Road

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/27"
)
propertie = res.json()
{
  "id": 27,
  "name": "Huntington Park Villa",
  "slug": "huntington-park-villa-27",
  "type": "villa",
  "countryAlpha2": "IS",
  "city": "Huntington Park",
  "address": "6554 Main Road",
  "latitude": 6.738515,
  "longitude": -136.454347,
  "bedrooms": 4,
  "bathrooms": 0.5,
  "maxGuests": 5,
  "pricePerNight": 244.67,
  "currency": "GBP",
  "rating": 2.9,
  "ratingCount": 161,
  "hostUserId": 174,
  "createdAt": "2025-09-06T04:18:37.332Z",
  "updatedAt": "2026-01-23T10:46:08.086Z"
}
Draftbit