Newellburgh Villa
villa · Newellburgh · $865.27/night · ★ 2.8 (813)
20817 Rempel Ridges
Overview
properties / #90
villa · Newellburgh · $865.27/night · ★ 2.8 (813)
20817 Rempel Ridges
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/90" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/90" ); const property = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/properties.d.ts https://example-data.com/types/properties.d.ts
import type { Property } from "./types/properties";
const res = await fetch(
"https://example-data.com/api/v1/properties/90"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/90"
)
propertie = res.json() Response
{
"id": 90,
"name": "Newellburgh Villa",
"slug": "newellburgh-villa-90",
"type": "villa",
"countryAlpha2": "KE",
"city": "Newellburgh",
"address": "20817 Rempel Ridges",
"latitude": 16.512527,
"longitude": -135.629982,
"bedrooms": 1,
"bathrooms": 4,
"maxGuests": 2,
"pricePerNight": 865.27,
"currency": "GBP",
"rating": 2.8,
"ratingCount": 813,
"hostUserId": 239,
"createdAt": "2025-09-19T18:44:59.598Z",
"updatedAt": "2026-05-10T20:44:06.119Z"
}