example-data.com

properties / #77

Barnstable Town Condo

condo · Barnstable Town · $1270.47/night · ★ 4.0 (1944)

3543 7th Avenue

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/77"
)
propertie = res.json()
{
  "id": 77,
  "name": "Barnstable Town Condo",
  "slug": "barnstable-town-condo-77",
  "type": "condo",
  "countryAlpha2": "DE",
  "city": "Barnstable Town",
  "address": "3543 7th Avenue",
  "latitude": 59.660186,
  "longitude": -99.925935,
  "bedrooms": 5,
  "bathrooms": 3,
  "maxGuests": 6,
  "pricePerNight": 1270.47,
  "currency": "JPY",
  "rating": 4,
  "ratingCount": 1944,
  "hostUserId": 84,
  "createdAt": "2025-10-29T16:20:17.668Z",
  "updatedAt": "2025-12-16T03:08:56.095Z"
}
Draftbit