Rohnert Park Apartment
apartment · Rohnert Park · $822.7/night · ★ 2.6 (986)
982 E 6th Avenue
Overview
properties / #4
apartment · Rohnert Park · $822.7/night · ★ 2.6 (986)
982 E 6th Avenue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/4" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/4" ); 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/4"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/4"
)
propertie = res.json() Response
{
"id": 4,
"name": "Rohnert Park Apartment",
"slug": "rohnert-park-apartment-4",
"type": "apartment",
"countryAlpha2": "FJ",
"city": "Rohnert Park",
"address": "982 E 6th Avenue",
"latitude": -10.401336,
"longitude": 177.987073,
"bedrooms": 0,
"bathrooms": 4,
"maxGuests": 2,
"pricePerNight": 822.7,
"currency": "BRL",
"rating": 2.6,
"ratingCount": 986,
"hostUserId": 149,
"createdAt": "2026-01-31T17:36:56.157Z",
"updatedAt": "2026-03-06T01:43:10.883Z"
}