example-data.com
Menu
Browse docs and collections

Overview

properties / #161

South June Condo

condo · South June · $1068.99/night · ★ 3.8 (474)

9552 Reichert Fall

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 161,
  "name": "South June Condo",
  "slug": "south-june-condo-161",
  "type": "condo",
  "countryAlpha2": "BE",
  "city": "South June",
  "address": "9552 Reichert Fall",
  "latitude": -24.121453,
  "longitude": 83.444908,
  "bedrooms": 3,
  "bathrooms": 2.5,
  "maxGuests": 4,
  "pricePerNight": 1068.99,
  "currency": "EUR",
  "rating": 3.8,
  "ratingCount": 474,
  "hostUserId": 34,
  "createdAt": "2025-12-02T13:46:02.067Z",
  "updatedAt": "2026-02-05T21:30:23.063Z"
}