example-data.com
Menu
Browse docs and collections

Overview

properties / #160

Jensenworth Condo

condo · Jensenworth · $558.94/night · ★ 4.8 (1469)

67911 Meadow Lane

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 160,
  "name": "Jensenworth Condo",
  "slug": "jensenworth-condo-160",
  "type": "condo",
  "countryAlpha2": "SG",
  "city": "Jensenworth",
  "address": "67911 Meadow Lane",
  "latitude": 30.39105,
  "longitude": -20.926757,
  "bedrooms": 5,
  "bathrooms": 3,
  "maxGuests": 11,
  "pricePerNight": 558.94,
  "currency": "BRL",
  "rating": 4.8,
  "ratingCount": 1469,
  "hostUserId": 219,
  "createdAt": "2025-07-04T05:21:29.735Z",
  "updatedAt": "2025-08-21T03:26:03.443Z"
}