South Jordan Apartment
apartment · South Jordan · $1115.75/night · ★ 4.5 (402)
5118 Upton Well
Overview
properties / #99
apartment · South Jordan · $1115.75/night · ★ 4.5 (402)
5118 Upton Well
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/99" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/99" ); 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/99"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/99"
)
propertie = res.json() Response
{
"id": 99,
"name": "South Jordan Apartment",
"slug": "south-jordan-apartment-99",
"type": "apartment",
"countryAlpha2": "DE",
"city": "South Jordan",
"address": "5118 Upton Well",
"latitude": -26.24259,
"longitude": 110.34962,
"bedrooms": 3,
"bathrooms": 1.5,
"maxGuests": 6,
"pricePerNight": 1115.75,
"currency": "GBP",
"rating": 4.5,
"ratingCount": 402,
"hostUserId": 193,
"createdAt": "2025-03-26T04:55:17.172Z",
"updatedAt": "2026-01-31T00:47:04.862Z"
}