example-data.com

properties / #69

Bartellville House

house · Bartellville · $838.76/night · ★ 4.8 (1791)

9954 Meadow Close

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/69"
)
propertie = res.json()
{
  "id": 69,
  "name": "Bartellville House",
  "slug": "bartellville-house-69",
  "type": "house",
  "countryAlpha2": "VN",
  "city": "Bartellville",
  "address": "9954 Meadow Close",
  "latitude": -39.793153,
  "longitude": 81.045477,
  "bedrooms": 4,
  "bathrooms": 3,
  "maxGuests": 4,
  "pricePerNight": 838.76,
  "currency": "CAD",
  "rating": 4.8,
  "ratingCount": 1791,
  "hostUserId": 111,
  "createdAt": "2024-08-14T18:23:15.264Z",
  "updatedAt": "2024-11-30T09:08:04.056Z"
}
Draftbit