example-data.com

properties / #30

North Braden Condo

condo · North Braden · $661.75/night · ★ 3.7 (560)

2620 Feest Parkway

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/30"
)
propertie = res.json()
{
  "id": 30,
  "name": "North Braden Condo",
  "slug": "north-braden-condo-30",
  "type": "condo",
  "countryAlpha2": "IS",
  "city": "North Braden",
  "address": "2620 Feest Parkway",
  "latitude": -22.260122,
  "longitude": 152.774717,
  "bedrooms": 1,
  "bathrooms": 4,
  "maxGuests": 4,
  "pricePerNight": 661.75,
  "currency": "EUR",
  "rating": 3.7,
  "ratingCount": 560,
  "hostUserId": 244,
  "createdAt": "2024-07-10T11:37:04.119Z",
  "updatedAt": "2025-03-18T19:57:19.421Z"
}
Draftbit