example-data.com

properties / #18

Nigelbury Apartment

apartment · Nigelbury · $1123.19/night · ★ 2.8 (1072)

800 E 1st Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/18"
)
propertie = res.json()
{
  "id": 18,
  "name": "Nigelbury Apartment",
  "slug": "nigelbury-apartment-18",
  "type": "apartment",
  "countryAlpha2": "IS",
  "city": "Nigelbury",
  "address": "800 E 1st Street",
  "latitude": 30.451499,
  "longitude": 39.800927,
  "bedrooms": 0,
  "bathrooms": 0.5,
  "maxGuests": 1,
  "pricePerNight": 1123.19,
  "currency": "SGD",
  "rating": 2.8,
  "ratingCount": 1072,
  "hostUserId": 84,
  "createdAt": "2025-05-20T11:05:17.423Z",
  "updatedAt": "2026-03-07T10:40:25.474Z"
}
Draftbit