example-data.com
Menu
Browse docs and collections

Overview

properties / #128

Heloisefort Loft

loft · Heloisefort · $236.44/night · ★ 2.8 (656)

76709 Fermin Curve

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 128,
  "name": "Heloisefort Loft",
  "slug": "heloisefort-loft-128",
  "type": "loft",
  "countryAlpha2": "GR",
  "city": "Heloisefort",
  "address": "76709 Fermin Curve",
  "latitude": 14.916019,
  "longitude": 168.233644,
  "bedrooms": 4,
  "bathrooms": 1.5,
  "maxGuests": 1,
  "pricePerNight": 236.44,
  "currency": "BRL",
  "rating": 2.8,
  "ratingCount": 656,
  "hostUserId": 147,
  "createdAt": "2024-09-09T13:47:42.440Z",
  "updatedAt": "2026-04-08T09:43:29.660Z"
}