example-data.com

properties / #102

Fort Theronbury Condo

condo · Fort Theronbury · $491.81/night · ★ 4.4 (939)

9142 Jerde Motorway

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/102"
)
propertie = res.json()
{
  "id": 102,
  "name": "Fort Theronbury Condo",
  "slug": "fort-theronbury-condo-102",
  "type": "condo",
  "countryAlpha2": "TR",
  "city": "Fort Theronbury",
  "address": "9142 Jerde Motorway",
  "latitude": 53.273595,
  "longitude": 65.864991,
  "bedrooms": 4,
  "bathrooms": 4,
  "maxGuests": 2,
  "pricePerNight": 491.81,
  "currency": "SGD",
  "rating": 4.4,
  "ratingCount": 939,
  "hostUserId": 210,
  "createdAt": "2024-11-14T11:28:21.735Z",
  "updatedAt": "2026-04-17T08:57:16.125Z"
}
Draftbit