example-data.com
Menu
Browse docs and collections

Overview

properties / #92

Jorgetown Condo

condo · Jorgetown · $236.91/night · ★ 3.4 (1317)

507 Moore Cove

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 92,
  "name": "Jorgetown Condo",
  "slug": "jorgetown-condo-92",
  "type": "condo",
  "countryAlpha2": "KR",
  "city": "Jorgetown",
  "address": "507 Moore Cove",
  "latitude": 13.069979,
  "longitude": 99.412819,
  "bedrooms": 2,
  "bathrooms": 3.5,
  "maxGuests": 2,
  "pricePerNight": 236.91,
  "currency": "AUD",
  "rating": 3.4,
  "ratingCount": 1317,
  "hostUserId": 144,
  "createdAt": "2025-02-17T11:08:32.682Z",
  "updatedAt": "2025-06-29T22:52:17.995Z"
}