example-data.com
Menu
Browse docs and collections

Overview

properties / #103

Fort Maximoberg Villa

villa · Fort Maximoberg · $169.37/night · ★ 3.5 (419)

54151 Ilene Street

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 103,
  "name": "Fort Maximoberg Villa",
  "slug": "fort-maximoberg-villa-103",
  "type": "villa",
  "countryAlpha2": "AT",
  "city": "Fort Maximoberg",
  "address": "54151 Ilene Street",
  "latitude": 25.569171,
  "longitude": -142.410326,
  "bedrooms": 1,
  "bathrooms": 2.5,
  "maxGuests": 2,
  "pricePerNight": 169.37,
  "currency": "AED",
  "rating": 3.5,
  "ratingCount": 419,
  "hostUserId": 134,
  "createdAt": "2025-07-01T07:19:34.379Z",
  "updatedAt": "2025-12-23T13:25:46.536Z"
}