example-data.com
Menu
Browse docs and collections

Overview

properties / #110

Reichelboro Apartment

apartment · Reichelboro · $471.1/night · ★ 3.6 (1802)

5373 Justice Ferry

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 110,
  "name": "Reichelboro Apartment",
  "slug": "reichelboro-apartment-110",
  "type": "apartment",
  "countryAlpha2": "FR",
  "city": "Reichelboro",
  "address": "5373 Justice Ferry",
  "latitude": -36.017016,
  "longitude": 47.226663,
  "bedrooms": 0,
  "bathrooms": 1.5,
  "maxGuests": 2,
  "pricePerNight": 471.1,
  "currency": "BRL",
  "rating": 3.6,
  "ratingCount": 1802,
  "hostUserId": 160,
  "createdAt": "2026-01-06T20:41:10.148Z",
  "updatedAt": "2026-04-01T05:59:36.751Z"
}