example-data.com

properties / #180

East Constantinton House

house · East Constantinton · $149.18/night · ★ 3.7 (1068)

5960 Isobel Glen

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/180"
)
propertie = res.json()
{
  "id": 180,
  "name": "East Constantinton House",
  "slug": "east-constantinton-house-180",
  "type": "house",
  "countryAlpha2": "AR",
  "city": "East Constantinton",
  "address": "5960 Isobel Glen",
  "latitude": 30.815114,
  "longitude": -90.549084,
  "bedrooms": 6,
  "bathrooms": 0.5,
  "maxGuests": 14,
  "pricePerNight": 149.18,
  "currency": "BRL",
  "rating": 3.7,
  "ratingCount": 1068,
  "hostUserId": 27,
  "createdAt": "2024-10-10T11:44:54.278Z",
  "updatedAt": "2025-06-03T06:32:04.720Z"
}
Draftbit