example-data.com

properties / #79

Gislasonshire Apartment

apartment · Gislasonshire · $1278.71/night · ★ 2.7 (1563)

360 Gusikowski Pike

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/79"
)
propertie = res.json()
{
  "id": 79,
  "name": "Gislasonshire Apartment",
  "slug": "gislasonshire-apartment-79",
  "type": "apartment",
  "countryAlpha2": "JP",
  "city": "Gislasonshire",
  "address": "360 Gusikowski Pike",
  "latitude": 22.437932,
  "longitude": -55.041965,
  "bedrooms": 0,
  "bathrooms": 2,
  "maxGuests": 1,
  "pricePerNight": 1278.71,
  "currency": "USD",
  "rating": 2.7,
  "ratingCount": 1563,
  "hostUserId": 91,
  "createdAt": "2025-07-07T00:13:29.328Z",
  "updatedAt": "2026-02-26T11:59:04.962Z"
}
Draftbit