example-data.com

properties / #70

South Tristonview Villa

villa · South Tristonview · $1205.7/night · ★ 4.7 (855)

266 Fritsch Lake

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/70"
)
propertie = res.json()
{
  "id": 70,
  "name": "South Tristonview Villa",
  "slug": "south-tristonview-villa-70",
  "type": "villa",
  "countryAlpha2": "IS",
  "city": "South Tristonview",
  "address": "266 Fritsch Lake",
  "latitude": -9.544052,
  "longitude": 95.841691,
  "bedrooms": 0,
  "bathrooms": 0.5,
  "maxGuests": 1,
  "pricePerNight": 1205.7,
  "currency": "EUR",
  "rating": 4.7,
  "ratingCount": 855,
  "hostUserId": 100,
  "createdAt": "2024-10-13T08:55:25.064Z",
  "updatedAt": "2025-04-27T08:52:33.874Z"
}
Draftbit