Port Antonetta Loft
loft · Port Antonetta · $1347.29/night · ★ 3.3 (171)
3742 Schowalter Terrace
Overview
properties / #181
loft · Port Antonetta · $1347.29/night · ★ 3.3 (171)
3742 Schowalter Terrace
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/181" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/181" ); 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/181"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/181"
)
propertie = res.json() Response
{
"id": 181,
"name": "Port Antonetta Loft",
"slug": "port-antonetta-loft-181",
"type": "loft",
"countryAlpha2": "SE",
"city": "Port Antonetta",
"address": "3742 Schowalter Terrace",
"latitude": -42.796335,
"longitude": 39.312699,
"bedrooms": 4,
"bathrooms": 0.5,
"maxGuests": 5,
"pricePerNight": 1347.29,
"currency": "CAD",
"rating": 3.3,
"ratingCount": 171,
"hostUserId": 77,
"createdAt": "2025-03-20T05:46:22.186Z",
"updatedAt": "2025-11-09T00:49:37.706Z"
}