example-data.com

properties / #114

New Melisa House

house · New Melisa · $54.49/night · ★ 4.7 (396)

879 Buddy Glen

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/114"
)
propertie = res.json()
{
  "id": 114,
  "name": "New Melisa House",
  "slug": "new-melisa-house-114",
  "type": "house",
  "countryAlpha2": "MX",
  "city": "New Melisa",
  "address": "879 Buddy Glen",
  "latitude": -21.86192,
  "longitude": 162.713577,
  "bedrooms": 4,
  "bathrooms": 3,
  "maxGuests": 3,
  "pricePerNight": 54.49,
  "currency": "USD",
  "rating": 4.7,
  "ratingCount": 396,
  "hostUserId": 88,
  "createdAt": "2024-07-25T15:39:31.204Z",
  "updatedAt": "2025-10-16T10:45:38.386Z"
}
Draftbit