example-data.com

properties / #154

East Sterlingborough Villa

villa · East Sterlingborough · $719.28/night · ★ 4.9 (1813)

56826 Ben Locks

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/154"
)
propertie = res.json()
{
  "id": 154,
  "name": "East Sterlingborough Villa",
  "slug": "east-sterlingborough-villa-154",
  "type": "villa",
  "countryAlpha2": "FJ",
  "city": "East Sterlingborough",
  "address": "56826 Ben Locks",
  "latitude": 28.289244,
  "longitude": 74.232795,
  "bedrooms": 0,
  "bathrooms": 2,
  "maxGuests": 1,
  "pricePerNight": 719.28,
  "currency": "MXN",
  "rating": 4.9,
  "ratingCount": 1813,
  "hostUserId": 81,
  "createdAt": "2026-05-13T18:53:09.703Z",
  "updatedAt": "2026-05-17T18:38:42.264Z"
}
Draftbit