example-data.com

properties / #90

Newellburgh Villa

villa · Newellburgh · $865.27/night · ★ 2.8 (813)

20817 Rempel Ridges

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/90"
)
propertie = res.json()
{
  "id": 90,
  "name": "Newellburgh Villa",
  "slug": "newellburgh-villa-90",
  "type": "villa",
  "countryAlpha2": "KE",
  "city": "Newellburgh",
  "address": "20817 Rempel Ridges",
  "latitude": 16.512527,
  "longitude": -135.629982,
  "bedrooms": 1,
  "bathrooms": 4,
  "maxGuests": 2,
  "pricePerNight": 865.27,
  "currency": "GBP",
  "rating": 2.8,
  "ratingCount": 813,
  "hostUserId": 239,
  "createdAt": "2025-09-19T18:44:59.598Z",
  "updatedAt": "2026-05-10T20:44:06.119Z"
}
Draftbit