example-data.com
Menu
Browse docs and collections

Overview

properties / #35

North Josue Loft

loft · North Josue · $361.31/night · ★ 4.9 (401)

70044 Hammes Tunnel

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 35,
  "name": "North Josue Loft",
  "slug": "north-josue-loft-35",
  "type": "loft",
  "countryAlpha2": "DK",
  "city": "North Josue",
  "address": "70044 Hammes Tunnel",
  "latitude": 42.427265,
  "longitude": 171.903785,
  "bedrooms": 1,
  "bathrooms": 3.5,
  "maxGuests": 4,
  "pricePerNight": 361.31,
  "currency": "SGD",
  "rating": 4.9,
  "ratingCount": 401,
  "hostUserId": 167,
  "createdAt": "2024-12-19T04:42:51.580Z",
  "updatedAt": "2026-01-31T12:35:41.011Z"
}