Jordibury Apartment
apartment · Jordibury · $69.49/night · ★ 4.1 (119)
410 N Front Street
Overview
properties / #59
apartment · Jordibury · $69.49/night · ★ 4.1 (119)
410 N Front Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/59" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/59" ); 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/59"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/59"
)
propertie = res.json() Response
{
"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"
}