example-data.com

properties / #43

Considineworth House

house · Considineworth · $106.93/night · ★ 4.4 (902)

74658 Jaskolski Rest

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/43"
)
propertie = res.json()
{
  "id": 43,
  "name": "Considineworth House",
  "slug": "considineworth-house-43",
  "type": "house",
  "countryAlpha2": "FJ",
  "city": "Considineworth",
  "address": "74658 Jaskolski Rest",
  "latitude": 59.731641,
  "longitude": 176.715977,
  "bedrooms": 1,
  "bathrooms": 1,
  "maxGuests": 3,
  "pricePerNight": 106.93,
  "currency": "BRL",
  "rating": 4.4,
  "ratingCount": 902,
  "hostUserId": 202,
  "createdAt": "2025-12-30T22:31:17.108Z",
  "updatedAt": "2026-05-14T05:42:09.328Z"
}
Draftbit