example-data.com

properties / #170

Perth Amboy Villa

villa · Perth Amboy · $397.76/night · ★ 2.8 (1730)

2096 Nash Turnpike

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/170"
)
propertie = res.json()
{
  "id": 170,
  "name": "Perth Amboy Villa",
  "slug": "perth-amboy-villa-170",
  "type": "villa",
  "countryAlpha2": "PL",
  "city": "Perth Amboy",
  "address": "2096 Nash Turnpike",
  "latitude": -31.208555,
  "longitude": 86.088663,
  "bedrooms": 4,
  "bathrooms": 1,
  "maxGuests": 8,
  "pricePerNight": 397.76,
  "currency": "GBP",
  "rating": 2.8,
  "ratingCount": 1730,
  "hostUserId": 224,
  "createdAt": "2025-04-10T02:41:01.523Z",
  "updatedAt": "2026-03-14T15:07:45.366Z"
}
Draftbit