New Ignatius Apartment
apartment · New Ignatius · $1457.76/night · ★ 2.6 (235)
80668 E Main
Overview
properties / #42
apartment · New Ignatius · $1457.76/night · ★ 2.6 (235)
80668 E Main
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/42" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/42" ); 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/42"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/42"
)
propertie = res.json() Response
{
"id": 42,
"name": "New Ignatius Apartment",
"slug": "new-ignatius-apartment-42",
"type": "apartment",
"countryAlpha2": "IS",
"city": "New Ignatius",
"address": "80668 E Main",
"latitude": -30.025208,
"longitude": 47.486391,
"bedrooms": 1,
"bathrooms": 1.5,
"maxGuests": 3,
"pricePerNight": 1457.76,
"currency": "USD",
"rating": 2.6,
"ratingCount": 235,
"hostUserId": 141,
"createdAt": "2025-10-07T01:02:29.989Z",
"updatedAt": "2026-04-21T11:02:09.117Z"
}