example-data.com

properties / #197

East Shanelle Cabin

cabin · East Shanelle · $383.21/night · ★ 3.7 (496)

6097 N 6th Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/197"
)
propertie = res.json()
{
  "id": 197,
  "name": "East Shanelle Cabin",
  "slug": "east-shanelle-cabin-197",
  "type": "cabin",
  "countryAlpha2": "AR",
  "city": "East Shanelle",
  "address": "6097 N 6th Street",
  "latitude": 58.371495,
  "longitude": -40.514083,
  "bedrooms": 5,
  "bathrooms": 2,
  "maxGuests": 2,
  "pricePerNight": 383.21,
  "currency": "GBP",
  "rating": 3.7,
  "ratingCount": 496,
  "hostUserId": 70,
  "createdAt": "2025-04-20T11:09:08.937Z",
  "updatedAt": "2025-10-25T02:34:27.449Z"
}
Draftbit