example-data.com

properties / #99

South Jordan Apartment

apartment · South Jordan · $1115.75/night · ★ 4.5 (402)

5118 Upton Well

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/99"
)
propertie = res.json()
{
  "id": 99,
  "name": "South Jordan Apartment",
  "slug": "south-jordan-apartment-99",
  "type": "apartment",
  "countryAlpha2": "DE",
  "city": "South Jordan",
  "address": "5118 Upton Well",
  "latitude": -26.24259,
  "longitude": 110.34962,
  "bedrooms": 3,
  "bathrooms": 1.5,
  "maxGuests": 6,
  "pricePerNight": 1115.75,
  "currency": "GBP",
  "rating": 4.5,
  "ratingCount": 402,
  "hostUserId": 193,
  "createdAt": "2025-03-26T04:55:17.172Z",
  "updatedAt": "2026-01-31T00:47:04.862Z"
}
Draftbit