example-data.com

properties / #174

Priceside House

house · Priceside · $513.82/night · ★ 4.2 (1988)

92465 Mount Pleasant

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/174"
)
propertie = res.json()
{
  "id": 174,
  "name": "Priceside House",
  "slug": "priceside-house-174",
  "type": "house",
  "countryAlpha2": "SG",
  "city": "Priceside",
  "address": "92465 Mount Pleasant",
  "latitude": 19.161323,
  "longitude": 129.740992,
  "bedrooms": 2,
  "bathrooms": 0.5,
  "maxGuests": 5,
  "pricePerNight": 513.82,
  "currency": "MXN",
  "rating": 4.2,
  "ratingCount": 1988,
  "hostUserId": 48,
  "createdAt": "2025-03-28T20:19:13.063Z",
  "updatedAt": "2025-04-21T02:46:43.771Z"
}
Draftbit