example-data.com

properties / #42

New Ignatius Apartment

apartment · New Ignatius · $1457.76/night · ★ 2.6 (235)

80668 E Main

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/42"
)
propertie = res.json()
{
  "id": 42,
  "name": "New Ignatius Apartment",
  "slug": "new-ignatius-apartment-42",
  "type": "apartment",
  "countryAlpha2": "IS",
  "city": "New Ignatius",
  "address": "80668 E Main",
  "latitude": -30.025208,
  "longitude": 47.486391,
  "bedrooms": 1,
  "bathrooms": 1.5,
  "maxGuests": 3,
  "pricePerNight": 1457.76,
  "currency": "USD",
  "rating": 2.6,
  "ratingCount": 235,
  "hostUserId": 141,
  "createdAt": "2025-10-07T01:02:29.989Z",
  "updatedAt": "2026-04-21T11:02:09.117Z"
}
Draftbit