example-data.com

properties / #178

Martinland House

house · Martinland · $671.87/night · ★ 3.0 (1418)

368 Fay Cape

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/178"
)
propertie = res.json()
{
  "id": 178,
  "name": "Martinland House",
  "slug": "martinland-house-178",
  "type": "house",
  "countryAlpha2": "ID",
  "city": "Martinland",
  "address": "368 Fay Cape",
  "latitude": 52.368945,
  "longitude": -85.342894,
  "bedrooms": 1,
  "bathrooms": 3,
  "maxGuests": 2,
  "pricePerNight": 671.87,
  "currency": "USD",
  "rating": 3,
  "ratingCount": 1418,
  "hostUserId": 190,
  "createdAt": "2025-06-07T00:53:56.853Z",
  "updatedAt": "2025-07-20T16:22:27.892Z"
}
Draftbit