example-data.com

properties / #107

South Hillardbury House

house · South Hillardbury · $688.15/night · ★ 3.1 (136)

909 Tad Skyway

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/107"
)
propertie = res.json()
{
  "id": 107,
  "name": "South Hillardbury House",
  "slug": "south-hillardbury-house-107",
  "type": "house",
  "countryAlpha2": "NG",
  "city": "South Hillardbury",
  "address": "909 Tad Skyway",
  "latitude": -41.089647,
  "longitude": 22.127033,
  "bedrooms": 3,
  "bathrooms": 2,
  "maxGuests": 6,
  "pricePerNight": 688.15,
  "currency": "JPY",
  "rating": 3.1,
  "ratingCount": 136,
  "hostUserId": 169,
  "createdAt": "2024-09-16T09:32:05.953Z",
  "updatedAt": "2025-01-08T01:41:54.984Z"
}
Draftbit