example-data.com

properties / #94

Jayneland House

house · Jayneland · $1281.9/night · ★ 3.7 (32)

84143 Alda Cliffs

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/94"
)
propertie = res.json()
{
  "id": 94,
  "name": "Jayneland House",
  "slug": "jayneland-house-94",
  "type": "house",
  "countryAlpha2": "GR",
  "city": "Jayneland",
  "address": "84143 Alda Cliffs",
  "latitude": -36.049927,
  "longitude": 158.049082,
  "bedrooms": 5,
  "bathrooms": 3.5,
  "maxGuests": 4,
  "pricePerNight": 1281.9,
  "currency": "MXN",
  "rating": 3.7,
  "ratingCount": 32,
  "hostUserId": 209,
  "createdAt": "2025-03-30T02:13:56.887Z",
  "updatedAt": "2025-06-02T20:02:47.299Z"
}
Draftbit