example-data.com
Menu
Browse docs and collections

Overview

properties / #32

Fort Darenfort Condo

condo · Fort Darenfort · $1332.17/night · ★ 3.4 (1128)

551 Kailyn Corners

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 32,
  "name": "Fort Darenfort Condo",
  "slug": "fort-darenfort-condo-32",
  "type": "condo",
  "countryAlpha2": "SA",
  "city": "Fort Darenfort",
  "address": "551 Kailyn Corners",
  "latitude": 59.439767,
  "longitude": 87.951831,
  "bedrooms": 3,
  "bathrooms": 0.5,
  "maxGuests": 3,
  "pricePerNight": 1332.17,
  "currency": "SGD",
  "rating": 3.4,
  "ratingCount": 1128,
  "hostUserId": 208,
  "createdAt": "2024-10-06T04:38:31.131Z",
  "updatedAt": "2025-04-10T17:01:08.719Z"
}