example-data.com

properties / #110

Reichelboro Apartment

apartment · Reichelboro · $471.1/night · ★ 3.6 (1802)

5373 Justice Ferry

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/110"
)
propertie = res.json()
{
  "id": 110,
  "name": "Reichelboro Apartment",
  "slug": "reichelboro-apartment-110",
  "type": "apartment",
  "countryAlpha2": "FR",
  "city": "Reichelboro",
  "address": "5373 Justice Ferry",
  "latitude": -36.017016,
  "longitude": 47.226663,
  "bedrooms": 0,
  "bathrooms": 1.5,
  "maxGuests": 2,
  "pricePerNight": 471.1,
  "currency": "BRL",
  "rating": 3.6,
  "ratingCount": 1802,
  "hostUserId": 160,
  "createdAt": "2026-01-06T20:41:10.148Z",
  "updatedAt": "2026-04-01T05:59:36.751Z"
}
Draftbit