Charleston Condo
condo · Charleston · $980.69/night · ★ 5.0 (881)
9464 10th Street
Overview
properties / #28
condo · Charleston · $980.69/night · ★ 5.0 (881)
9464 10th Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/28" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/28" ); 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/28"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/28"
)
propertie = res.json() Response
{
"id": 28,
"name": "Charleston Condo",
"slug": "charleston-condo-28",
"type": "condo",
"countryAlpha2": "MA",
"city": "Charleston",
"address": "9464 10th Street",
"latitude": 50.970057,
"longitude": -35.761545,
"bedrooms": 3,
"bathrooms": 1.5,
"maxGuests": 6,
"pricePerNight": 980.69,
"currency": "AUD",
"rating": 5,
"ratingCount": 881,
"hostUserId": 158,
"createdAt": "2024-10-15T15:09:52.565Z",
"updatedAt": "2025-10-31T00:57:12.171Z"
}