example-data.com

properties / #20

Rudyport Villa

villa · Rudyport · $1138.99/night · ★ 2.6 (1838)

271 Haag Plain

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/20"
)
propertie = res.json()
{
  "id": 20,
  "name": "Rudyport Villa",
  "slug": "rudyport-villa-20",
  "type": "villa",
  "countryAlpha2": "FJ",
  "city": "Rudyport",
  "address": "271 Haag Plain",
  "latitude": -53.759346,
  "longitude": 71.173019,
  "bedrooms": 6,
  "bathrooms": 0.5,
  "maxGuests": 14,
  "pricePerNight": 1138.99,
  "currency": "SGD",
  "rating": 2.6,
  "ratingCount": 1838,
  "hostUserId": 131,
  "createdAt": "2025-12-20T21:14:35.102Z",
  "updatedAt": "2026-01-12T22:31:31.827Z"
}
Draftbit