example-data.com

properties / #28

Charleston Condo

condo · Charleston · $980.69/night · ★ 5.0 (881)

9464 10th Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/28"
)
propertie = res.json()
{
  "id": 28,
  "name": "Charleston Condo",
  "slug": "charleston-condo-28",
  "type": "condo",
  "countryAlpha2": "MA",
  "city": "Charleston",
  "address": "9464 10th Street",
  "latitude": 50.970057,
  "longitude": -35.761545,
  "bedrooms": 3,
  "bathrooms": 1.5,
  "maxGuests": 6,
  "pricePerNight": 980.69,
  "currency": "AUD",
  "rating": 5,
  "ratingCount": 881,
  "hostUserId": 158,
  "createdAt": "2024-10-15T15:09:52.565Z",
  "updatedAt": "2025-10-31T00:57:12.171Z"
}
Draftbit