example-data.com
Menu
Browse docs and collections

Overview

properties / #155

New Cassie Apartment

apartment · New Cassie · $592.91/night · ★ 4.9 (1496)

71843 Williamson Parkways

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/properties/155" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/properties/155"
);
const property = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/properties.d.ts https://example-data.com/types/properties.d.ts
import type { Property } from "./types/properties";

const res = await fetch(
  "https://example-data.com/api/v1/properties/155"
);
const property = (await res.json()) as Property;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/155"
)
propertie = res.json()

Response

{
  "id": 155,
  "name": "New Cassie Apartment",
  "slug": "new-cassie-apartment-155",
  "type": "apartment",
  "countryAlpha2": "US",
  "city": "New Cassie",
  "address": "71843 Williamson Parkways",
  "latitude": 54.829549,
  "longitude": 97.416141,
  "bedrooms": 1,
  "bathrooms": 2,
  "maxGuests": 3,
  "pricePerNight": 592.91,
  "currency": "CAD",
  "rating": 4.9,
  "ratingCount": 1496,
  "hostUserId": 226,
  "createdAt": "2026-01-18T04:37:57.101Z",
  "updatedAt": "2026-04-06T18:04:12.844Z"
}