example-data.com

properties / #112

Braxtonside Apartment

apartment · Braxtonside · $728.25/night · ★ 3.5 (1135)

7891 W Market Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/112"
)
propertie = res.json()
{
  "id": 112,
  "name": "Braxtonside Apartment",
  "slug": "braxtonside-apartment-112",
  "type": "apartment",
  "countryAlpha2": "NZ",
  "city": "Braxtonside",
  "address": "7891 W Market Street",
  "latitude": 40.116834,
  "longitude": -68.09697,
  "bedrooms": 4,
  "bathrooms": 0.5,
  "maxGuests": 6,
  "pricePerNight": 728.25,
  "currency": "SGD",
  "rating": 3.5,
  "ratingCount": 1135,
  "hostUserId": 144,
  "createdAt": "2025-03-14T05:41:14.860Z",
  "updatedAt": "2025-06-02T07:44:38.409Z"
}
Draftbit