example-data.com

properties / #122

Collinsshire Villa

villa · Collinsshire · $656.75/night · ★ 3.0 (995)

898 Cristal Cove

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/122"
)
propertie = res.json()
{
  "id": 122,
  "name": "Collinsshire Villa",
  "slug": "collinsshire-villa-122",
  "type": "villa",
  "countryAlpha2": "FR",
  "city": "Collinsshire",
  "address": "898 Cristal Cove",
  "latitude": -31.394072,
  "longitude": 105.439748,
  "bedrooms": 1,
  "bathrooms": 0.5,
  "maxGuests": 2,
  "pricePerNight": 656.75,
  "currency": "GBP",
  "rating": 3,
  "ratingCount": 995,
  "hostUserId": 217,
  "createdAt": "2025-05-06T09:44:21.302Z",
  "updatedAt": "2026-05-21T00:53:26.141Z"
}
Draftbit