example-data.com

properties / #4

Rohnert Park Apartment

apartment · Rohnert Park · $822.7/night · ★ 2.6 (986)

982 E 6th Avenue

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/4" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/4"
);
const propertie = await res.json();
import type { Propertie } from "https://example-data.com/types/properties.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/properties/4"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/4"
)
propertie = res.json()
{
  "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"
}
Draftbit