example-data.com
Menu
Browse docs and collections

Overview

properties / #132

Port Ronaldochester Condo

condo · Port Ronaldochester · $324.52/night · ★ 4.4 (937)

819 Brookside

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 132,
  "name": "Port Ronaldochester Condo",
  "slug": "port-ronaldochester-condo-132",
  "type": "condo",
  "countryAlpha2": "DE",
  "city": "Port Ronaldochester",
  "address": "819 Brookside",
  "latitude": 35.808522,
  "longitude": 168.508892,
  "bedrooms": 6,
  "bathrooms": 4,
  "maxGuests": 2,
  "pricePerNight": 324.52,
  "currency": "GBP",
  "rating": 4.4,
  "ratingCount": 937,
  "hostUserId": 18,
  "createdAt": "2025-04-27T07:50:51.101Z",
  "updatedAt": "2025-07-21T18:11:40.401Z"
}