example-data.com
Menu
Browse docs and collections

Overview

properties / #152

Stromanstead Condo

condo · Stromanstead · $51.08/night · ★ 4.0 (1122)

641 Rebecca Oval

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 152,
  "name": "Stromanstead Condo",
  "slug": "stromanstead-condo-152",
  "type": "condo",
  "countryAlpha2": "ET",
  "city": "Stromanstead",
  "address": "641 Rebecca Oval",
  "latitude": -50.935289,
  "longitude": -77.878518,
  "bedrooms": 2,
  "bathrooms": 1.5,
  "maxGuests": 6,
  "pricePerNight": 51.08,
  "currency": "MXN",
  "rating": 4,
  "ratingCount": 1122,
  "hostUserId": 241,
  "createdAt": "2025-07-04T09:19:00.428Z",
  "updatedAt": "2026-03-31T23:45:39.144Z"
}