example-data.com

properties / #48

Port Vernashire House

house · Port Vernashire · $481.03/night · ★ 4.5 (693)

584 May Forest

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/48"
)
propertie = res.json()
{
  "id": 48,
  "name": "Port Vernashire House",
  "slug": "port-vernashire-house-48",
  "type": "house",
  "countryAlpha2": "GR",
  "city": "Port Vernashire",
  "address": "584 May Forest",
  "latitude": 15.440077,
  "longitude": -45.506549,
  "bedrooms": 1,
  "bathrooms": 0.5,
  "maxGuests": 3,
  "pricePerNight": 481.03,
  "currency": "GBP",
  "rating": 4.5,
  "ratingCount": 693,
  "hostUserId": 241,
  "createdAt": "2025-03-16T11:54:41.494Z",
  "updatedAt": "2025-10-07T08:22:33.488Z"
}
Draftbit