example-data.com

properties / #156

Jakubowskimouth Loft

loft · Jakubowskimouth · $1431.63/night · ★ 4.2 (1702)

106 S Washington Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/156"
)
propertie = res.json()
{
  "id": 156,
  "name": "Jakubowskimouth Loft",
  "slug": "jakubowskimouth-loft-156",
  "type": "loft",
  "countryAlpha2": "IT",
  "city": "Jakubowskimouth",
  "address": "106 S Washington Street",
  "latitude": 42.279977,
  "longitude": -112.721475,
  "bedrooms": 3,
  "bathrooms": 3,
  "maxGuests": 4,
  "pricePerNight": 1431.63,
  "currency": "JPY",
  "rating": 4.2,
  "ratingCount": 1702,
  "hostUserId": 47,
  "createdAt": "2025-11-23T23:26:44.352Z",
  "updatedAt": "2026-01-27T16:56:01.777Z"
}
Draftbit