Joshuaport Villa
villa · Joshuaport · $109.36/night · ★ 3.9 (418)
6934 Laurel Close
Overview
properties / #71
villa · Joshuaport · $109.36/night · ★ 3.9 (418)
6934 Laurel Close
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/71" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/71" ); 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/71"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/71"
)
propertie = res.json() Response
{
"id": 71,
"name": "Joshuaport Villa",
"slug": "joshuaport-villa-71",
"type": "villa",
"countryAlpha2": "US",
"city": "Joshuaport",
"address": "6934 Laurel Close",
"latitude": 9.070535,
"longitude": -127.219095,
"bedrooms": 4,
"bathrooms": 2.5,
"maxGuests": 10,
"pricePerNight": 109.36,
"currency": "AUD",
"rating": 3.9,
"ratingCount": 418,
"hostUserId": 178,
"createdAt": "2026-05-01T21:31:28.811Z",
"updatedAt": "2026-05-06T16:15:59.083Z"
}