example-data.com

properties / #61

Missoula Condo

condo · Missoula · $909.43/night · ★ 3.7 (1406)

5823 O'Keefe Locks

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/61"
)
propertie = res.json()
{
  "id": 61,
  "name": "Missoula Condo",
  "slug": "missoula-condo-61",
  "type": "condo",
  "countryAlpha2": "JP",
  "city": "Missoula",
  "address": "5823 O'Keefe Locks",
  "latitude": -28.623744,
  "longitude": -120.632445,
  "bedrooms": 3,
  "bathrooms": 3.5,
  "maxGuests": 8,
  "pricePerNight": 909.43,
  "currency": "AED",
  "rating": 3.7,
  "ratingCount": 1406,
  "hostUserId": 14,
  "createdAt": "2025-07-11T00:19:25.562Z",
  "updatedAt": "2025-09-25T22:52:10.631Z"
}
Draftbit