example-data.com
Menu
Browse docs and collections

Overview

properties / #156

Jakubowskimouth Loft

loft · Jakubowskimouth · $1431.63/night · ★ 4.2 (1702)

106 S Washington Street

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 156,
  "name": "Jakubowskimouth Loft",
  "slug": "jakubowskimouth-loft-156",
  "type": "loft",
  "countryAlpha2": "IT",
  "city": "Jakubowskimouth",
  "address": "106 S Washington Street",
  "latitude": 42.279977,
  "longitude": -112.721475,
  "bedrooms": 3,
  "bathrooms": 3,
  "maxGuests": 4,
  "pricePerNight": 1431.63,
  "currency": "JPY",
  "rating": 4.2,
  "ratingCount": 1702,
  "hostUserId": 47,
  "createdAt": "2025-11-23T23:26:44.352Z",
  "updatedAt": "2026-01-27T16:56:01.777Z"
}