example-data.com

properties / #52

North Ludie House

house · North Ludie · $172.4/night · ★ 4.6 (1304)

376 Forest Road

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/52"
)
propertie = res.json()
{
  "id": 52,
  "name": "North Ludie House",
  "slug": "north-ludie-house-52",
  "type": "house",
  "countryAlpha2": "CH",
  "city": "North Ludie",
  "address": "376 Forest Road",
  "latitude": 7.833592,
  "longitude": 18.462373,
  "bedrooms": 2,
  "bathrooms": 2.5,
  "maxGuests": 5,
  "pricePerNight": 172.4,
  "currency": "MXN",
  "rating": 4.6,
  "ratingCount": 1304,
  "hostUserId": 200,
  "createdAt": "2025-12-18T22:26:38.934Z",
  "updatedAt": "2026-03-24T08:52:05.768Z"
}
Draftbit