example-data.com

properties / #150

Bradtkefield House

house · Bradtkefield · $1197.31/night · ★ 3.1 (1401)

74304 W 10th Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/150"
)
propertie = res.json()
{
  "id": 150,
  "name": "Bradtkefield House",
  "slug": "bradtkefield-house-150",
  "type": "house",
  "countryAlpha2": "NL",
  "city": "Bradtkefield",
  "address": "74304 W 10th Street",
  "latitude": 36.99642,
  "longitude": -21.71108,
  "bedrooms": 5,
  "bathrooms": 2.5,
  "maxGuests": 12,
  "pricePerNight": 1197.31,
  "currency": "AED",
  "rating": 3.1,
  "ratingCount": 1401,
  "hostUserId": 175,
  "createdAt": "2024-08-09T18:59:58.606Z",
  "updatedAt": "2026-04-13T18:00:37.320Z"
}
Draftbit