example-data.com

properties / #165

Shreveport Cabin

cabin · Shreveport · $424.93/night · ★ 4.6 (1188)

610 Medhurst Course

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/165"
)
propertie = res.json()
{
  "id": 165,
  "name": "Shreveport Cabin",
  "slug": "shreveport-cabin-165",
  "type": "cabin",
  "countryAlpha2": "VN",
  "city": "Shreveport",
  "address": "610 Medhurst Course",
  "latitude": 34.497546,
  "longitude": -107.797371,
  "bedrooms": 3,
  "bathrooms": 0.5,
  "maxGuests": 8,
  "pricePerNight": 424.93,
  "currency": "JPY",
  "rating": 4.6,
  "ratingCount": 1188,
  "hostUserId": 239,
  "createdAt": "2024-11-20T22:02:12.730Z",
  "updatedAt": "2026-02-07T07:53:18.116Z"
}
Draftbit