example-data.com

properties / #158

Arleneborough Cabin

cabin · Arleneborough · $729.98/night · ★ 3.7 (1074)

698 S Central Avenue

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/158"
)
propertie = res.json()
{
  "id": 158,
  "name": "Arleneborough Cabin",
  "slug": "arleneborough-cabin-158",
  "type": "cabin",
  "countryAlpha2": "IS",
  "city": "Arleneborough",
  "address": "698 S Central Avenue",
  "latitude": 21.526512,
  "longitude": 169.690128,
  "bedrooms": 6,
  "bathrooms": 3.5,
  "maxGuests": 11,
  "pricePerNight": 729.98,
  "currency": "CAD",
  "rating": 3.7,
  "ratingCount": 1074,
  "hostUserId": 109,
  "createdAt": "2025-03-22T22:11:47.119Z",
  "updatedAt": "2025-05-23T17:17:09.667Z"
}
Draftbit