example-data.com
Menu
Browse docs and collections

Overview

properties / #141

Lake Jerrell Apartment

apartment · Lake Jerrell · $1226.06/night · ★ 3.3 (1651)

10819 Hickory Street

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 141,
  "name": "Lake Jerrell Apartment",
  "slug": "lake-jerrell-apartment-141",
  "type": "apartment",
  "countryAlpha2": "IT",
  "city": "Lake Jerrell",
  "address": "10819 Hickory Street",
  "latitude": 30.171367,
  "longitude": 31.257971,
  "bedrooms": 5,
  "bathrooms": 1,
  "maxGuests": 7,
  "pricePerNight": 1226.06,
  "currency": "AED",
  "rating": 3.3,
  "ratingCount": 1651,
  "hostUserId": 114,
  "createdAt": "2025-07-10T18:24:48.592Z",
  "updatedAt": "2025-11-02T10:08:20.912Z"
}