example-data.com

properties / #108

Euless Villa

villa · Euless · $865.52/night · ★ 3.5 (539)

410 Wehner Ramp

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/108"
)
propertie = res.json()
{
  "id": 108,
  "name": "Euless Villa",
  "slug": "euless-villa-108",
  "type": "villa",
  "countryAlpha2": "SG",
  "city": "Euless",
  "address": "410 Wehner Ramp",
  "latitude": 44.302788,
  "longitude": 3.225713,
  "bedrooms": 3,
  "bathrooms": 2.5,
  "maxGuests": 1,
  "pricePerNight": 865.52,
  "currency": "AED",
  "rating": 3.5,
  "ratingCount": 539,
  "hostUserId": 130,
  "createdAt": "2025-07-13T09:27:14.622Z",
  "updatedAt": "2026-05-13T09:20:36.745Z"
}
Draftbit