example-data.com

properties / #141

Lake Jerrell Apartment

apartment · Lake Jerrell · $1226.06/night · ★ 3.3 (1651)

10819 Hickory Street

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/141" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/141"
);
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/141"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/141"
)
propertie = res.json()
{
  "id": 141,
  "name": "Lake Jerrell Apartment",
  "slug": "lake-jerrell-apartment-141",
  "type": "apartment",
  "countryAlpha2": "IT",
  "city": "Lake Jerrell",
  "address": "10819 Hickory Street",
  "latitude": 30.171367,
  "longitude": 31.257971,
  "bedrooms": 5,
  "bathrooms": 1,
  "maxGuests": 7,
  "pricePerNight": 1226.06,
  "currency": "AED",
  "rating": 3.3,
  "ratingCount": 1651,
  "hostUserId": 114,
  "createdAt": "2025-07-10T18:24:48.592Z",
  "updatedAt": "2025-11-02T10:08:20.912Z"
}
Draftbit