example-data.com

properties / #194

Scottsdale Cabin

cabin · Scottsdale · $210.97/night · ★ 4.6 (604)

970 W Pine Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/194"
)
propertie = res.json()
{
  "id": 194,
  "name": "Scottsdale Cabin",
  "slug": "scottsdale-cabin-194",
  "type": "cabin",
  "countryAlpha2": "ET",
  "city": "Scottsdale",
  "address": "970 W Pine Street",
  "latitude": -5.386993,
  "longitude": 48.127323,
  "bedrooms": 1,
  "bathrooms": 2.5,
  "maxGuests": 3,
  "pricePerNight": 210.97,
  "currency": "AED",
  "rating": 4.6,
  "ratingCount": 604,
  "hostUserId": 90,
  "createdAt": "2025-09-25T17:58:16.181Z",
  "updatedAt": "2026-03-31T10:16:03.496Z"
}
Draftbit