example-data.com

properties / #169

Pomona Villa

villa · Pomona · $629.35/night · ★ 3.3 (929)

8542 Harrison Avenue

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/169"
)
propertie = res.json()
{
  "id": 169,
  "name": "Pomona Villa",
  "slug": "pomona-villa-169",
  "type": "villa",
  "countryAlpha2": "IL",
  "city": "Pomona",
  "address": "8542 Harrison Avenue",
  "latitude": -10.637726,
  "longitude": -147.419506,
  "bedrooms": 6,
  "bathrooms": 3,
  "maxGuests": 11,
  "pricePerNight": 629.35,
  "currency": "BRL",
  "rating": 3.3,
  "ratingCount": 929,
  "hostUserId": 195,
  "createdAt": "2025-07-11T16:31:53.016Z",
  "updatedAt": "2025-08-07T21:19:42.317Z"
}
Draftbit