example-data.com
Menu
Browse docs and collections

Overview

properties / #144

Alphonsofield Condo

condo · Alphonsofield · $901.51/night · ★ 2.5 (327)

75008 Emil Spurs

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 144,
  "name": "Alphonsofield Condo",
  "slug": "alphonsofield-condo-144",
  "type": "condo",
  "countryAlpha2": "NL",
  "city": "Alphonsofield",
  "address": "75008 Emil Spurs",
  "latitude": -43.357482,
  "longitude": 38.955516,
  "bedrooms": 4,
  "bathrooms": 0.5,
  "maxGuests": 2,
  "pricePerNight": 901.51,
  "currency": "AUD",
  "rating": 2.5,
  "ratingCount": 327,
  "hostUserId": 30,
  "createdAt": "2025-03-23T03:25:35.540Z",
  "updatedAt": "2025-07-27T07:09:04.383Z"
}