example-data.com
Menu
Browse docs and collections

Overview

properties / #102

Fort Theronbury Condo

condo · Fort Theronbury · $491.81/night · ★ 4.4 (939)

9142 Jerde Motorway

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 102,
  "name": "Fort Theronbury Condo",
  "slug": "fort-theronbury-condo-102",
  "type": "condo",
  "countryAlpha2": "TR",
  "city": "Fort Theronbury",
  "address": "9142 Jerde Motorway",
  "latitude": 53.273595,
  "longitude": 65.864991,
  "bedrooms": 4,
  "bathrooms": 4,
  "maxGuests": 2,
  "pricePerNight": 491.81,
  "currency": "SGD",
  "rating": 4.4,
  "ratingCount": 939,
  "hostUserId": 210,
  "createdAt": "2024-11-14T11:28:21.735Z",
  "updatedAt": "2026-04-17T08:57:16.125Z"
}