example-data.com

properties / #129

West Kaiamouth Apartment

apartment · West Kaiamouth · $414.65/night · ★ 4.3 (940)

7916 Lucinda Avenue

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/129"
)
propertie = res.json()
{
  "id": 129,
  "name": "West Kaiamouth Apartment",
  "slug": "west-kaiamouth-apartment-129",
  "type": "apartment",
  "countryAlpha2": "TR",
  "city": "West Kaiamouth",
  "address": "7916 Lucinda Avenue",
  "latitude": -24.281992,
  "longitude": 95.218323,
  "bedrooms": 1,
  "bathrooms": 1,
  "maxGuests": 1,
  "pricePerNight": 414.65,
  "currency": "CAD",
  "rating": 4.3,
  "ratingCount": 940,
  "hostUserId": 105,
  "createdAt": "2024-07-20T22:57:30.290Z",
  "updatedAt": "2025-01-12T18:37:53.105Z"
}
Draftbit