Jermaincester Condo
condo · Jermaincester · $271.51/night · ★ 3.3 (101)
6511 Warren Road
Overview
properties / #104
condo · Jermaincester · $271.51/night · ★ 3.3 (101)
6511 Warren Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/104" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/104" ); 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/104"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/104"
)
propertie = res.json() Response
{
"id": 104,
"name": "Jermaincester Condo",
"slug": "jermaincester-condo-104",
"type": "condo",
"countryAlpha2": "SA",
"city": "Jermaincester",
"address": "6511 Warren Road",
"latitude": 28.380402,
"longitude": -162.619412,
"bedrooms": 0,
"bathrooms": 3,
"maxGuests": 1,
"pricePerNight": 271.51,
"currency": "MXN",
"rating": 3.3,
"ratingCount": 101,
"hostUserId": 109,
"createdAt": "2025-02-02T10:39:53.821Z",
"updatedAt": "2025-03-09T16:00:00.346Z"
}