example-data.com
Menu
Browse docs and collections

Overview

properties / #138

Cummingsbury Loft

loft · Cummingsbury · $383.49/night · ★ 4.2 (1581)

2156 Kasey Circle

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 138,
  "name": "Cummingsbury Loft",
  "slug": "cummingsbury-loft-138",
  "type": "loft",
  "countryAlpha2": "DE",
  "city": "Cummingsbury",
  "address": "2156 Kasey Circle",
  "latitude": -54.093982,
  "longitude": 95.787047,
  "bedrooms": 0,
  "bathrooms": 3.5,
  "maxGuests": 1,
  "pricePerNight": 383.49,
  "currency": "USD",
  "rating": 4.2,
  "ratingCount": 1581,
  "hostUserId": 28,
  "createdAt": "2025-04-27T20:30:40.906Z",
  "updatedAt": "2025-12-09T19:23:11.828Z"
}