example-data.com

properties / #193

East Cindyville Villa

villa · East Cindyville · $1012.48/night · ★ 3.9 (545)

872 Cormier Inlet

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/193"
)
propertie = res.json()
{
  "id": 193,
  "name": "East Cindyville Villa",
  "slug": "east-cindyville-villa-193",
  "type": "villa",
  "countryAlpha2": "TH",
  "city": "East Cindyville",
  "address": "872 Cormier Inlet",
  "latitude": -26.309498,
  "longitude": -13.769247,
  "bedrooms": 4,
  "bathrooms": 0.5,
  "maxGuests": 3,
  "pricePerNight": 1012.48,
  "currency": "GBP",
  "rating": 3.9,
  "ratingCount": 545,
  "hostUserId": 227,
  "createdAt": "2025-04-19T10:21:56.916Z",
  "updatedAt": "2026-05-05T03:29:35.213Z"
}
Draftbit