example-data.com

properties / #73

New Reillyville Condo

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

7433 Kelsie Ramp

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/73" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/73"
);
const propertie = await res.json();
import type { Propertie } from "https://example-data.com/types/properties.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/properties/73"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/73"
)
propertie = res.json()
{
  "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"
}
Draftbit