example-data.com
Menu
Browse docs and collections

Overview

properties / #9

Demariostead Apartment

apartment · Demariostead · $1040.4/night · ★ 3.0 (1893)

7236 Jewell Spur

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/properties/9"
);
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/9"
);
const property = (await res.json()) as Property;

Python example

import requests

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

Response

{
  "id": 9,
  "name": "Demariostead Apartment",
  "slug": "demariostead-apartment-9",
  "type": "apartment",
  "countryAlpha2": "KR",
  "city": "Demariostead",
  "address": "7236 Jewell Spur",
  "latitude": -15.7256,
  "longitude": 100.530172,
  "bedrooms": 4,
  "bathrooms": 3,
  "maxGuests": 4,
  "pricePerNight": 1040.4,
  "currency": "SGD",
  "rating": 3,
  "ratingCount": 1893,
  "hostUserId": 114,
  "createdAt": "2025-05-01T09:53:18.821Z",
  "updatedAt": "2026-03-26T01:07:13.675Z"
}