example-data.com
Menu
Browse docs and collections

Overview

properties / #36

South Aileenfield Apartment

apartment · South Aileenfield · $420.69/night · ★ 3.4 (1531)

44819 Windmill Close

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 36,
  "name": "South Aileenfield Apartment",
  "slug": "south-aileenfield-apartment-36",
  "type": "apartment",
  "countryAlpha2": "EG",
  "city": "South Aileenfield",
  "address": "44819 Windmill Close",
  "latitude": -24.996795,
  "longitude": 61.963427,
  "bedrooms": 6,
  "bathrooms": 2,
  "maxGuests": 4,
  "pricePerNight": 420.69,
  "currency": "AUD",
  "rating": 3.4,
  "ratingCount": 1531,
  "hostUserId": 150,
  "createdAt": "2024-10-30T22:13:23.817Z",
  "updatedAt": "2025-08-15T19:59:16.666Z"
}