example-data.com

properties / #81

Port Jensen Cabin

cabin · Port Jensen · $62.75/night · ★ 3.4 (1499)

60726 Central Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/81"
)
propertie = res.json()
{
  "id": 81,
  "name": "Port Jensen Cabin",
  "slug": "port-jensen-cabin-81",
  "type": "cabin",
  "countryAlpha2": "NL",
  "city": "Port Jensen",
  "address": "60726 Central Street",
  "latitude": -10.455373,
  "longitude": 58.04974,
  "bedrooms": 5,
  "bathrooms": 2.5,
  "maxGuests": 11,
  "pricePerNight": 62.75,
  "currency": "BRL",
  "rating": 3.4,
  "ratingCount": 1499,
  "hostUserId": 139,
  "createdAt": "2025-02-12T18:18:03.394Z",
  "updatedAt": "2025-08-11T15:40:01.107Z"
}
Draftbit