example-data.com

properties / #146

Kemmerside House

house · Kemmerside · $467.39/night · ★ 3.6 (406)

61716 Jackson Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/146"
)
propertie = res.json()
{
  "id": 146,
  "name": "Kemmerside House",
  "slug": "kemmerside-house-146",
  "type": "house",
  "countryAlpha2": "TH",
  "city": "Kemmerside",
  "address": "61716 Jackson Street",
  "latitude": -35.473276,
  "longitude": 135.081741,
  "bedrooms": 0,
  "bathrooms": 4,
  "maxGuests": 1,
  "pricePerNight": 467.39,
  "currency": "AED",
  "rating": 3.6,
  "ratingCount": 406,
  "hostUserId": 126,
  "createdAt": "2024-08-24T10:24:47.973Z",
  "updatedAt": "2026-01-19T14:08:30.528Z"
}
Draftbit