example-data.com

properties / #200

Noestead Villa

villa · Noestead · $89.1/night · ★ 3.6 (1577)

192 Franey Inlet

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/200"
)
propertie = res.json()
{
  "id": 200,
  "name": "Noestead Villa",
  "slug": "noestead-villa-200",
  "type": "villa",
  "countryAlpha2": "IE",
  "city": "Noestead",
  "address": "192 Franey Inlet",
  "latitude": -29.667199,
  "longitude": -98.715175,
  "bedrooms": 1,
  "bathrooms": 2,
  "maxGuests": 1,
  "pricePerNight": 89.1,
  "currency": "JPY",
  "rating": 3.6,
  "ratingCount": 1577,
  "hostUserId": 91,
  "createdAt": "2024-08-26T01:29:19.642Z",
  "updatedAt": "2026-02-20T17:55:46.052Z"
}
Draftbit