example-data.com

properties / #39

Gregoryton Villa

villa · Gregoryton · $1364.15/night · ★ 2.7 (930)

9717 Von Gardens

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/39"
)
propertie = res.json()
{
  "id": 39,
  "name": "Gregoryton Villa",
  "slug": "gregoryton-villa-39",
  "type": "villa",
  "countryAlpha2": "US",
  "city": "Gregoryton",
  "address": "9717 Von Gardens",
  "latitude": 0.489195,
  "longitude": -100.042347,
  "bedrooms": 1,
  "bathrooms": 1.5,
  "maxGuests": 1,
  "pricePerNight": 1364.15,
  "currency": "AUD",
  "rating": 2.7,
  "ratingCount": 930,
  "hostUserId": 218,
  "createdAt": "2026-04-26T22:15:40.077Z",
  "updatedAt": "2026-05-15T22:06:50.633Z"
}
Draftbit