example-data.com

properties / #58

Port Mohamedton Loft

loft · Port Mohamedton · $834.82/night · ★ 3.8 (1729)

7746 Castle Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/58"
)
propertie = res.json()
{
  "id": 58,
  "name": "Port Mohamedton Loft",
  "slug": "port-mohamedton-loft-58",
  "type": "loft",
  "countryAlpha2": "MX",
  "city": "Port Mohamedton",
  "address": "7746 Castle Street",
  "latitude": -31.064421,
  "longitude": 149.610304,
  "bedrooms": 6,
  "bathrooms": 1.5,
  "maxGuests": 12,
  "pricePerNight": 834.82,
  "currency": "USD",
  "rating": 3.8,
  "ratingCount": 1729,
  "hostUserId": 107,
  "createdAt": "2025-03-24T22:29:30.788Z",
  "updatedAt": "2025-10-20T06:21:53.797Z"
}
Draftbit