example-data.com

properties / #104

Jermaincester Condo

condo · Jermaincester · $271.51/night · ★ 3.3 (101)

6511 Warren Road

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/104"
)
propertie = res.json()
{
  "id": 104,
  "name": "Jermaincester Condo",
  "slug": "jermaincester-condo-104",
  "type": "condo",
  "countryAlpha2": "SA",
  "city": "Jermaincester",
  "address": "6511 Warren Road",
  "latitude": 28.380402,
  "longitude": -162.619412,
  "bedrooms": 0,
  "bathrooms": 3,
  "maxGuests": 1,
  "pricePerNight": 271.51,
  "currency": "MXN",
  "rating": 3.3,
  "ratingCount": 101,
  "hostUserId": 109,
  "createdAt": "2025-02-02T10:39:53.821Z",
  "updatedAt": "2025-03-09T16:00:00.346Z"
}
Draftbit