example-data.com

properties / #117

Philadelphia House

house · Philadelphia · $191.53/night · ★ 2.7 (785)

32615 Effertz Summit

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/117"
)
propertie = res.json()
{
  "id": 117,
  "name": "Philadelphia House",
  "slug": "philadelphia-house-117",
  "type": "house",
  "countryAlpha2": "IT",
  "city": "Philadelphia",
  "address": "32615 Effertz Summit",
  "latitude": -18.911647,
  "longitude": -0.804366,
  "bedrooms": 5,
  "bathrooms": 3,
  "maxGuests": 11,
  "pricePerNight": 191.53,
  "currency": "USD",
  "rating": 2.7,
  "ratingCount": 785,
  "hostUserId": 185,
  "createdAt": "2025-09-22T05:25:42.708Z",
  "updatedAt": "2025-11-01T10:57:05.087Z"
}
Draftbit