example-data.com

properties / #163

Kshlerinside Condo

condo · Kshlerinside · $912.49/night · ★ 2.8 (589)

625 Martin Luther King Drive

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/163"
)
propertie = res.json()
{
  "id": 163,
  "name": "Kshlerinside Condo",
  "slug": "kshlerinside-condo-163",
  "type": "condo",
  "countryAlpha2": "BE",
  "city": "Kshlerinside",
  "address": "625 Martin Luther King Drive",
  "latitude": -8.44216,
  "longitude": -58.023693,
  "bedrooms": 4,
  "bathrooms": 2,
  "maxGuests": 3,
  "pricePerNight": 912.49,
  "currency": "GBP",
  "rating": 2.8,
  "ratingCount": 589,
  "hostUserId": 69,
  "createdAt": "2024-07-24T01:32:16.641Z",
  "updatedAt": "2025-02-02T04:54:47.831Z"
}
Draftbit