New Johathan Condo
condo · New Johathan · $1196.12/night · ★ 3.1 (142)
682 Gutmann Glen
Overview
properties / #75
condo · New Johathan · $1196.12/night · ★ 3.1 (142)
682 Gutmann Glen
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/75" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/75" ); 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/75"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/75"
)
propertie = res.json() Response
{
"id": 75,
"name": "New Johathan Condo",
"slug": "new-johathan-condo-75",
"type": "condo",
"countryAlpha2": "CN",
"city": "New Johathan",
"address": "682 Gutmann Glen",
"latitude": -47.376402,
"longitude": 69.716738,
"bedrooms": 1,
"bathrooms": 4,
"maxGuests": 1,
"pricePerNight": 1196.12,
"currency": "AED",
"rating": 3.1,
"ratingCount": 142,
"hostUserId": 60,
"createdAt": "2024-09-21T17:08:11.698Z",
"updatedAt": "2026-03-23T02:16:46.545Z"
}