example-data.com

properties / #6

Elizabeth House

house · Elizabeth · $1173.48/night · ★ 3.4 (973)

60027 Goyette Camp

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/6"
)
propertie = res.json()
{
  "id": 6,
  "name": "Elizabeth House",
  "slug": "elizabeth-house-6",
  "type": "house",
  "countryAlpha2": "VN",
  "city": "Elizabeth",
  "address": "60027 Goyette Camp",
  "latitude": 41.765772,
  "longitude": 178.658884,
  "bedrooms": 0,
  "bathrooms": 2.5,
  "maxGuests": 2,
  "pricePerNight": 1173.48,
  "currency": "AED",
  "rating": 3.4,
  "ratingCount": 973,
  "hostUserId": 121,
  "createdAt": "2024-11-28T01:16:09.969Z",
  "updatedAt": "2026-01-16T04:56:31.013Z"
}
Draftbit