example-data.com

properties / #63

Cameronworth Cabin

cabin · Cameronworth · $1381.15/night · ★ 4.2 (193)

3209 Cristal View

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/63"
)
propertie = res.json()
{
  "id": 63,
  "name": "Cameronworth Cabin",
  "slug": "cameronworth-cabin-63",
  "type": "cabin",
  "countryAlpha2": "DE",
  "city": "Cameronworth",
  "address": "3209 Cristal View",
  "latitude": 33.830078,
  "longitude": -89.451017,
  "bedrooms": 4,
  "bathrooms": 2,
  "maxGuests": 7,
  "pricePerNight": 1381.15,
  "currency": "USD",
  "rating": 4.2,
  "ratingCount": 193,
  "hostUserId": 215,
  "createdAt": "2024-12-14T15:11:49.339Z",
  "updatedAt": "2025-05-10T01:47:26.870Z"
}
Draftbit