example-data.com

properties / #93

Omaha Apartment

apartment · Omaha · $1272.44/night · ★ 2.8 (1260)

20167 Spinka Estates

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/93"
)
propertie = res.json()
{
  "id": 93,
  "name": "Omaha Apartment",
  "slug": "omaha-apartment-93",
  "type": "apartment",
  "countryAlpha2": "AR",
  "city": "Omaha",
  "address": "20167 Spinka Estates",
  "latitude": 49.798231,
  "longitude": 81.020733,
  "bedrooms": 3,
  "bathrooms": 3,
  "maxGuests": 1,
  "pricePerNight": 1272.44,
  "currency": "CAD",
  "rating": 2.8,
  "ratingCount": 1260,
  "hostUserId": 38,
  "createdAt": "2024-12-07T21:48:58.905Z",
  "updatedAt": "2025-07-09T09:25:32.236Z"
}
Draftbit