example-data.com

properties / #76

Thousand Oaks Villa

villa · Thousand Oaks · $1437.29/night · ★ 3.0 (428)

63714 Otha Rest

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/76"
)
propertie = res.json()
{
  "id": 76,
  "name": "Thousand Oaks Villa",
  "slug": "thousand-oaks-villa-76",
  "type": "villa",
  "countryAlpha2": "ET",
  "city": "Thousand Oaks",
  "address": "63714 Otha Rest",
  "latitude": -22.116404,
  "longitude": 79.847337,
  "bedrooms": 5,
  "bathrooms": 2,
  "maxGuests": 3,
  "pricePerNight": 1437.29,
  "currency": "EUR",
  "rating": 3,
  "ratingCount": 428,
  "hostUserId": 22,
  "createdAt": "2025-07-28T20:20:03.585Z",
  "updatedAt": "2026-01-02T09:14:36.884Z"
}
Draftbit