example-data.com

properties / #1

Asheville Villa

villa · Asheville · $786.38/night · ★ 4.1 (1093)

265 George Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/1"
)
propertie = res.json()
{
  "id": 1,
  "name": "Asheville Villa",
  "slug": "asheville-villa-1",
  "type": "villa",
  "countryAlpha2": "CN",
  "city": "Asheville",
  "address": "265 George Street",
  "latitude": 8.16773,
  "longitude": -78.851336,
  "bedrooms": 3,
  "bathrooms": 2,
  "maxGuests": 8,
  "pricePerNight": 786.38,
  "currency": "GBP",
  "rating": 4.1,
  "ratingCount": 1093,
  "hostUserId": 30,
  "createdAt": "2025-06-19T22:09:24.110Z",
  "updatedAt": "2026-01-01T16:46:13.640Z"
}
Draftbit