Omaha Apartment
apartment · Omaha · $1272.44/night · ★ 2.8 (1260)
20167 Spinka Estates
Overview
properties / #93
apartment · Omaha · $1272.44/night · ★ 2.8 (1260)
20167 Spinka Estates
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/93" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/93" ); 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/93"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/93"
)
propertie = res.json() Response
{
"id": 93,
"name": "Omaha Apartment",
"slug": "omaha-apartment-93",
"type": "apartment",
"countryAlpha2": "AR",
"city": "Omaha",
"address": "20167 Spinka Estates",
"latitude": 49.798231,
"longitude": 81.020733,
"bedrooms": 3,
"bathrooms": 3,
"maxGuests": 1,
"pricePerNight": 1272.44,
"currency": "CAD",
"rating": 2.8,
"ratingCount": 1260,
"hostUserId": 38,
"createdAt": "2024-12-07T21:48:58.905Z",
"updatedAt": "2025-07-09T09:25:32.236Z"
}