example-data.com

properties / #59

Jordibury Apartment

apartment · Jordibury · $69.49/night · ★ 4.1 (119)

410 N Front Street

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/59" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/59"
);
const propertie = await res.json();
import type { Propertie } from "https://example-data.com/types/properties.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/properties/59"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/59"
)
propertie = res.json()
{
  "id": 59,
  "name": "Jordibury Apartment",
  "slug": "jordibury-apartment-59",
  "type": "apartment",
  "countryAlpha2": "TR",
  "city": "Jordibury",
  "address": "410 N Front Street",
  "latitude": -26.504277,
  "longitude": 162.312836,
  "bedrooms": 4,
  "bathrooms": 4,
  "maxGuests": 5,
  "pricePerNight": 69.49,
  "currency": "AUD",
  "rating": 4.1,
  "ratingCount": 119,
  "hostUserId": 24,
  "createdAt": "2025-07-04T05:20:30.169Z",
  "updatedAt": "2026-04-29T00:09:56.612Z"
}
Draftbit