Gregoryton Villa
villa · Gregoryton · $1364.15/night · ★ 2.7 (930)
9717 Von Gardens
Overview
properties / #39
villa · Gregoryton · $1364.15/night · ★ 2.7 (930)
9717 Von Gardens
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/39" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/39" ); 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/39"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/39"
)
propertie = res.json() Response
{
"id": 39,
"name": "Gregoryton Villa",
"slug": "gregoryton-villa-39",
"type": "villa",
"countryAlpha2": "US",
"city": "Gregoryton",
"address": "9717 Von Gardens",
"latitude": 0.489195,
"longitude": -100.042347,
"bedrooms": 1,
"bathrooms": 1.5,
"maxGuests": 1,
"pricePerNight": 1364.15,
"currency": "AUD",
"rating": 2.7,
"ratingCount": 930,
"hostUserId": 218,
"createdAt": "2026-04-26T22:15:40.077Z",
"updatedAt": "2026-05-15T22:06:50.633Z"
}