example-data.com

properties / #72

Candidashire Villa

villa · Candidashire · $22.94/night · ★ 4.3 (1335)

573 Russel Plaza

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/72"
)
propertie = res.json()
{
  "id": 72,
  "name": "Candidashire Villa",
  "slug": "candidashire-villa-72",
  "type": "villa",
  "countryAlpha2": "PT",
  "city": "Candidashire",
  "address": "573 Russel Plaza",
  "latitude": 22.770906,
  "longitude": 107.06825,
  "bedrooms": 5,
  "bathrooms": 3,
  "maxGuests": 2,
  "pricePerNight": 22.94,
  "currency": "BRL",
  "rating": 4.3,
  "ratingCount": 1335,
  "hostUserId": 70,
  "createdAt": "2026-05-20T13:42:28.578Z",
  "updatedAt": "2026-05-21T01:53:10.530Z"
}
Draftbit