example-data.com

properties / #171

Krystalport Apartment

apartment · Krystalport · $1396.63/night · ★ 4.1 (1458)

6473 Frami Fall

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/171"
)
propertie = res.json()
{
  "id": 171,
  "name": "Krystalport Apartment",
  "slug": "krystalport-apartment-171",
  "type": "apartment",
  "countryAlpha2": "IE",
  "city": "Krystalport",
  "address": "6473 Frami Fall",
  "latitude": 4.9134,
  "longitude": 112.275329,
  "bedrooms": 4,
  "bathrooms": 2,
  "maxGuests": 2,
  "pricePerNight": 1396.63,
  "currency": "JPY",
  "rating": 4.1,
  "ratingCount": 1458,
  "hostUserId": 247,
  "createdAt": "2024-06-14T00:09:19.967Z",
  "updatedAt": "2024-07-03T00:21:45.173Z"
}
Draftbit