example-data.com

properties / #183

Fort Jermainchester Loft

loft · Fort Jermainchester · $703.41/night · ★ 4.7 (575)

791 Gulgowski River

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/183"
)
propertie = res.json()
{
  "id": 183,
  "name": "Fort Jermainchester Loft",
  "slug": "fort-jermainchester-loft-183",
  "type": "loft",
  "countryAlpha2": "IS",
  "city": "Fort Jermainchester",
  "address": "791 Gulgowski River",
  "latitude": -21.62626,
  "longitude": -78.998579,
  "bedrooms": 5,
  "bathrooms": 3,
  "maxGuests": 1,
  "pricePerNight": 703.41,
  "currency": "SGD",
  "rating": 4.7,
  "ratingCount": 575,
  "hostUserId": 167,
  "createdAt": "2024-06-11T14:32:05.438Z",
  "updatedAt": "2024-10-04T04:56:34.052Z"
}
Draftbit