example-data.com
Menu
Browse docs and collections

Overview

properties / #34

New Zora Apartment

apartment · New Zora · $1004.26/night · ★ 2.6 (1253)

3857 Fletcher Port

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/properties/34" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/properties/34"
);
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/34"
);
const property = (await res.json()) as Property;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/34"
)
propertie = res.json()

Response

{
  "id": 34,
  "name": "New Zora Apartment",
  "slug": "new-zora-apartment-34",
  "type": "apartment",
  "countryAlpha2": "NL",
  "city": "New Zora",
  "address": "3857 Fletcher Port",
  "latitude": 37.721935,
  "longitude": -64.518117,
  "bedrooms": 0,
  "bathrooms": 3.5,
  "maxGuests": 1,
  "pricePerNight": 1004.26,
  "currency": "SGD",
  "rating": 2.6,
  "ratingCount": 1253,
  "hostUserId": 138,
  "createdAt": "2025-08-04T07:09:22.099Z",
  "updatedAt": "2025-10-31T07:18:26.003Z"
}