Fort Derekfield Condo
condo · Fort Derekfield · $999.3/night · ★ 4.8 (1402)
35724 Ortiz Field
Overview
properties / #184
condo · Fort Derekfield · $999.3/night · ★ 4.8 (1402)
35724 Ortiz Field
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/184" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/184" ); 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/184"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/184"
)
propertie = res.json() Response
{
"id": 184,
"name": "Fort Derekfield Condo",
"slug": "fort-derekfield-condo-184",
"type": "condo",
"countryAlpha2": "MX",
"city": "Fort Derekfield",
"address": "35724 Ortiz Field",
"latitude": -41.183939,
"longitude": -129.314345,
"bedrooms": 2,
"bathrooms": 1,
"maxGuests": 6,
"pricePerNight": 999.3,
"currency": "AED",
"rating": 4.8,
"ratingCount": 1402,
"hostUserId": 156,
"createdAt": "2025-05-20T16:09:35.206Z",
"updatedAt": "2026-03-07T09:58:50.761Z"
}