example-data.com

properties / #41

Tiannaboro Villa

villa · Tiannaboro · $601.75/night · ★ 2.8 (588)

73321 Ryan Flat

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/41"
)
propertie = res.json()
{
  "id": 41,
  "name": "Tiannaboro Villa",
  "slug": "tiannaboro-villa-41",
  "type": "villa",
  "countryAlpha2": "US",
  "city": "Tiannaboro",
  "address": "73321 Ryan Flat",
  "latitude": -5.688957,
  "longitude": 61.875064,
  "bedrooms": 4,
  "bathrooms": 4,
  "maxGuests": 10,
  "pricePerNight": 601.75,
  "currency": "SGD",
  "rating": 2.8,
  "ratingCount": 588,
  "hostUserId": 231,
  "createdAt": "2025-04-23T12:25:05.127Z",
  "updatedAt": "2025-12-05T01:21:47.647Z"
}
Draftbit