example-data.com

properties / #71

Joshuaport Villa

villa · Joshuaport · $109.36/night · ★ 3.9 (418)

6934 Laurel Close

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/71"
)
propertie = res.json()
{
  "id": 71,
  "name": "Joshuaport Villa",
  "slug": "joshuaport-villa-71",
  "type": "villa",
  "countryAlpha2": "US",
  "city": "Joshuaport",
  "address": "6934 Laurel Close",
  "latitude": 9.070535,
  "longitude": -127.219095,
  "bedrooms": 4,
  "bathrooms": 2.5,
  "maxGuests": 10,
  "pricePerNight": 109.36,
  "currency": "AUD",
  "rating": 3.9,
  "ratingCount": 418,
  "hostUserId": 178,
  "createdAt": "2026-05-01T21:31:28.811Z",
  "updatedAt": "2026-05-06T16:15:59.083Z"
}
Draftbit