example-data.com

properties / #119

Port Antwon Villa

villa · Port Antwon · $588.72/night · ★ 4.8 (1000)

9712 Hauck Groves

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/119"
)
propertie = res.json()
{
  "id": 119,
  "name": "Port Antwon Villa",
  "slug": "port-antwon-villa-119",
  "type": "villa",
  "countryAlpha2": "MA",
  "city": "Port Antwon",
  "address": "9712 Hauck Groves",
  "latitude": -24.796451,
  "longitude": -93.675521,
  "bedrooms": 2,
  "bathrooms": 4,
  "maxGuests": 6,
  "pricePerNight": 588.72,
  "currency": "BRL",
  "rating": 4.8,
  "ratingCount": 1000,
  "hostUserId": 77,
  "createdAt": "2025-01-16T13:25:49.561Z",
  "updatedAt": "2026-02-01T12:31:37.858Z"
}
Draftbit