example-data.com

properties / #148

Sarahbury Cabin

cabin · Sarahbury · $454.37/night · ★ 4.2 (364)

544 Ernie Overpass

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/148"
)
propertie = res.json()
{
  "id": 148,
  "name": "Sarahbury Cabin",
  "slug": "sarahbury-cabin-148",
  "type": "cabin",
  "countryAlpha2": "IN",
  "city": "Sarahbury",
  "address": "544 Ernie Overpass",
  "latitude": 11.985678,
  "longitude": 57.99301,
  "bedrooms": 6,
  "bathrooms": 3.5,
  "maxGuests": 8,
  "pricePerNight": 454.37,
  "currency": "AUD",
  "rating": 4.2,
  "ratingCount": 364,
  "hostUserId": 45,
  "createdAt": "2024-12-29T19:49:31.851Z",
  "updatedAt": "2025-01-22T16:23:27.743Z"
}
Draftbit