example-data.com

properties / #182

North Mertie House

house · North Mertie · $183.44/night · ★ 4.0 (1713)

91533 Claremont Road

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/182"
)
propertie = res.json()
{
  "id": 182,
  "name": "North Mertie House",
  "slug": "north-mertie-house-182",
  "type": "house",
  "countryAlpha2": "CN",
  "city": "North Mertie",
  "address": "91533 Claremont Road",
  "latitude": 37.728506,
  "longitude": -67.722327,
  "bedrooms": 4,
  "bathrooms": 3.5,
  "maxGuests": 6,
  "pricePerNight": 183.44,
  "currency": "MXN",
  "rating": 4,
  "ratingCount": 1713,
  "hostUserId": 132,
  "createdAt": "2025-03-06T03:44:12.627Z",
  "updatedAt": "2025-10-01T00:37:52.499Z"
}
Draftbit