example-data.com
Menu
Browse docs and collections

Overview

properties / #145

Centennial Condo

condo · Centennial · $1388.14/night · ★ 3.5 (255)

8725 Mosciski Plain

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 145,
  "name": "Centennial Condo",
  "slug": "centennial-condo-145",
  "type": "condo",
  "countryAlpha2": "CA",
  "city": "Centennial",
  "address": "8725 Mosciski Plain",
  "latitude": 46.610938,
  "longitude": 32.53061,
  "bedrooms": 1,
  "bathrooms": 1,
  "maxGuests": 4,
  "pricePerNight": 1388.14,
  "currency": "BRL",
  "rating": 3.5,
  "ratingCount": 255,
  "hostUserId": 103,
  "createdAt": "2025-07-07T11:05:56.114Z",
  "updatedAt": "2025-12-16T03:53:15.352Z"
}