example-data.com

properties / #130

Nitzschechester Villa

villa · Nitzschechester · $1250.63/night · ★ 3.5 (25)

26231 Poplar Road

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/130"
)
propertie = res.json()
{
  "id": 130,
  "name": "Nitzschechester Villa",
  "slug": "nitzschechester-villa-130",
  "type": "villa",
  "countryAlpha2": "PH",
  "city": "Nitzschechester",
  "address": "26231 Poplar Road",
  "latitude": -27.851665,
  "longitude": -160.751803,
  "bedrooms": 0,
  "bathrooms": 4,
  "maxGuests": 2,
  "pricePerNight": 1250.63,
  "currency": "BRL",
  "rating": 3.5,
  "ratingCount": 25,
  "hostUserId": 51,
  "createdAt": "2025-10-11T03:29:59.239Z",
  "updatedAt": "2025-11-23T01:18:41.444Z"
}
Draftbit