example-data.com

properties / #37

Port Bettieworth Loft

loft · Port Bettieworth · $110.88/night · ★ 4.5 (189)

300 Park Road

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/37"
)
propertie = res.json()
{
  "id": 37,
  "name": "Port Bettieworth Loft",
  "slug": "port-bettieworth-loft-37",
  "type": "loft",
  "countryAlpha2": "IT",
  "city": "Port Bettieworth",
  "address": "300 Park Road",
  "latitude": -50.709982,
  "longitude": -121.277251,
  "bedrooms": 4,
  "bathrooms": 1.5,
  "maxGuests": 4,
  "pricePerNight": 110.88,
  "currency": "JPY",
  "rating": 4.5,
  "ratingCount": 189,
  "hostUserId": 205,
  "createdAt": "2024-08-15T17:27:46.757Z",
  "updatedAt": "2024-12-03T23:44:28.567Z"
}
Draftbit