example-data.com

properties / #121

Coon Rapids Loft

loft · Coon Rapids · $1340/night · ★ 3.6 (157)

3099 West Lane

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/121"
)
propertie = res.json()
{
  "id": 121,
  "name": "Coon Rapids Loft",
  "slug": "coon-rapids-loft-121",
  "type": "loft",
  "countryAlpha2": "GB",
  "city": "Coon Rapids",
  "address": "3099 West Lane",
  "latitude": 34.956008,
  "longitude": 92.079226,
  "bedrooms": 1,
  "bathrooms": 1,
  "maxGuests": 3,
  "pricePerNight": 1340,
  "currency": "USD",
  "rating": 3.6,
  "ratingCount": 157,
  "hostUserId": 32,
  "createdAt": "2026-01-06T16:22:08.786Z",
  "updatedAt": "2026-02-10T23:09:26.930Z"
}
Draftbit