example-data.com
Menu
Browse docs and collections

Overview

properties / #73

New Reillyville Condo

condo · New Reillyville · $711.12/night · ★ 3.7 (1917)

7433 Kelsie Ramp

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 73,
  "name": "New Reillyville Condo",
  "slug": "new-reillyville-condo-73",
  "type": "condo",
  "countryAlpha2": "GR",
  "city": "New Reillyville",
  "address": "7433 Kelsie Ramp",
  "latitude": 49.167261,
  "longitude": -44.433185,
  "bedrooms": 4,
  "bathrooms": 1,
  "maxGuests": 6,
  "pricePerNight": 711.12,
  "currency": "AED",
  "rating": 3.7,
  "ratingCount": 1917,
  "hostUserId": 156,
  "createdAt": "2024-08-12T11:28:39.204Z",
  "updatedAt": "2025-04-28T01:35:16.604Z"
}