example-data.com

properties / #133

South Toniside Villa

villa · South Toniside · $1467.99/night · ★ 4.8 (1946)

12436 Weber Bridge

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/133"
)
propertie = res.json()
{
  "id": 133,
  "name": "South Toniside Villa",
  "slug": "south-toniside-villa-133",
  "type": "villa",
  "countryAlpha2": "GB",
  "city": "South Toniside",
  "address": "12436 Weber Bridge",
  "latitude": -45.621837,
  "longitude": -80.31178,
  "bedrooms": 2,
  "bathrooms": 1.5,
  "maxGuests": 4,
  "pricePerNight": 1467.99,
  "currency": "AED",
  "rating": 4.8,
  "ratingCount": 1946,
  "hostUserId": 186,
  "createdAt": "2025-05-12T22:14:36.710Z",
  "updatedAt": "2026-05-08T22:33:14.593Z"
}
Draftbit