example-data.com
Menu
Browse docs and collections

Overview

properties / #68

Keeblerton Villa

villa · Keeblerton · $747.38/night · ★ 3.3 (1231)

2162 Fay Meadow

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 68,
  "name": "Keeblerton Villa",
  "slug": "keeblerton-villa-68",
  "type": "villa",
  "countryAlpha2": "TR",
  "city": "Keeblerton",
  "address": "2162 Fay Meadow",
  "latitude": 16.492814,
  "longitude": -104.049844,
  "bedrooms": 2,
  "bathrooms": 3.5,
  "maxGuests": 1,
  "pricePerNight": 747.38,
  "currency": "AUD",
  "rating": 3.3,
  "ratingCount": 1231,
  "hostUserId": 157,
  "createdAt": "2025-09-14T00:21:52.656Z",
  "updatedAt": "2026-03-07T16:45:30.476Z"
}