example-data.com

properties / #82

North Alicia Cabin

cabin · North Alicia · $519.07/night · ★ 3.7 (519)

776 Schuppe Corner

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/82"
)
propertie = res.json()
{
  "id": 82,
  "name": "North Alicia Cabin",
  "slug": "north-alicia-cabin-82",
  "type": "cabin",
  "countryAlpha2": "AU",
  "city": "North Alicia",
  "address": "776 Schuppe Corner",
  "latitude": -24.45651,
  "longitude": 42.577519,
  "bedrooms": 4,
  "bathrooms": 2.5,
  "maxGuests": 1,
  "pricePerNight": 519.07,
  "currency": "MXN",
  "rating": 3.7,
  "ratingCount": 519,
  "hostUserId": 188,
  "createdAt": "2024-10-19T04:48:53.713Z",
  "updatedAt": "2025-05-14T23:28:52.615Z"
}
Draftbit