example-data.com

properties / #128

Heloisefort Loft

loft · Heloisefort · $236.44/night · ★ 2.8 (656)

76709 Fermin Curve

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/128"
)
propertie = res.json()
{
  "id": 128,
  "name": "Heloisefort Loft",
  "slug": "heloisefort-loft-128",
  "type": "loft",
  "countryAlpha2": "GR",
  "city": "Heloisefort",
  "address": "76709 Fermin Curve",
  "latitude": 14.916019,
  "longitude": 168.233644,
  "bedrooms": 4,
  "bathrooms": 1.5,
  "maxGuests": 1,
  "pricePerNight": 236.44,
  "currency": "BRL",
  "rating": 2.8,
  "ratingCount": 656,
  "hostUserId": 147,
  "createdAt": "2024-09-09T13:47:42.440Z",
  "updatedAt": "2026-04-08T09:43:29.660Z"
}
Draftbit