example-data.com

properties / #186

Rowlandberg House

house · Rowlandberg · $291.84/night · ★ 3.1 (186)

92378 S 5th Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/186"
)
propertie = res.json()
{
  "id": 186,
  "name": "Rowlandberg House",
  "slug": "rowlandberg-house-186",
  "type": "house",
  "countryAlpha2": "JP",
  "city": "Rowlandberg",
  "address": "92378 S 5th Street",
  "latitude": 9.177091,
  "longitude": -58.658764,
  "bedrooms": 1,
  "bathrooms": 3,
  "maxGuests": 1,
  "pricePerNight": 291.84,
  "currency": "AED",
  "rating": 3.1,
  "ratingCount": 186,
  "hostUserId": 190,
  "createdAt": "2025-01-30T16:28:10.808Z",
  "updatedAt": "2025-02-08T16:38:26.442Z"
}
Draftbit