example-data.com
Menu
Browse docs and collections

Overview

properties / #57

Clovis Condo

condo · Clovis · $1446.36/night · ★ 2.9 (1540)

472 Dicki Field

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 57,
  "name": "Clovis Condo",
  "slug": "clovis-condo-57",
  "type": "condo",
  "countryAlpha2": "AU",
  "city": "Clovis",
  "address": "472 Dicki Field",
  "latitude": -16.708092,
  "longitude": -122.36235,
  "bedrooms": 6,
  "bathrooms": 2,
  "maxGuests": 8,
  "pricePerNight": 1446.36,
  "currency": "CAD",
  "rating": 2.9,
  "ratingCount": 1540,
  "hostUserId": 183,
  "createdAt": "2025-12-11T23:21:36.678Z",
  "updatedAt": "2026-01-11T11:04:43.440Z"
}