example-data.com

properties / #88

Las Cruces Cabin

cabin · Las Cruces · $1101.84/night · ★ 2.7 (1846)

23482 McCullough Hollow

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/88"
)
propertie = res.json()
{
  "id": 88,
  "name": "Las Cruces Cabin",
  "slug": "las-cruces-cabin-88",
  "type": "cabin",
  "countryAlpha2": "IN",
  "city": "Las Cruces",
  "address": "23482 McCullough Hollow",
  "latitude": 5.741638,
  "longitude": -163.228551,
  "bedrooms": 2,
  "bathrooms": 1,
  "maxGuests": 5,
  "pricePerNight": 1101.84,
  "currency": "AED",
  "rating": 2.7,
  "ratingCount": 1846,
  "hostUserId": 21,
  "createdAt": "2025-05-21T01:43:10.745Z",
  "updatedAt": "2026-04-06T11:57:47.830Z"
}
Draftbit