Considineworth House
house · Considineworth · $106.93/night · ★ 4.4 (902)
74658 Jaskolski Rest
Overview
properties / #43
house · Considineworth · $106.93/night · ★ 4.4 (902)
74658 Jaskolski Rest
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/43" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/43" ); 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/43"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/43"
)
propertie = res.json() Response
{
"id": 43,
"name": "Considineworth House",
"slug": "considineworth-house-43",
"type": "house",
"countryAlpha2": "FJ",
"city": "Considineworth",
"address": "74658 Jaskolski Rest",
"latitude": 59.731641,
"longitude": 176.715977,
"bedrooms": 1,
"bathrooms": 1,
"maxGuests": 3,
"pricePerNight": 106.93,
"currency": "BRL",
"rating": 4.4,
"ratingCount": 902,
"hostUserId": 202,
"createdAt": "2025-12-30T22:31:17.108Z",
"updatedAt": "2026-05-14T05:42:09.328Z"
}