example-data.com

properties / #127

Theresiastead Villa

villa · Theresiastead · $380.66/night · ★ 4.1 (1352)

80106 Vernice Forks

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/127"
)
propertie = res.json()
{
  "id": 127,
  "name": "Theresiastead Villa",
  "slug": "theresiastead-villa-127",
  "type": "villa",
  "countryAlpha2": "IT",
  "city": "Theresiastead",
  "address": "80106 Vernice Forks",
  "latitude": -1.309619,
  "longitude": -112.593441,
  "bedrooms": 5,
  "bathrooms": 4,
  "maxGuests": 7,
  "pricePerNight": 380.66,
  "currency": "MXN",
  "rating": 4.1,
  "ratingCount": 1352,
  "hostUserId": 8,
  "createdAt": "2024-08-13T04:22:25.888Z",
  "updatedAt": "2025-04-21T10:43:10.167Z"
}
Draftbit