Port Jensen Cabin
cabin · Port Jensen · $62.75/night · ★ 3.4 (1499)
60726 Central Street
Overview
properties / #81
cabin · Port Jensen · $62.75/night · ★ 3.4 (1499)
60726 Central Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/81" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/81" ); 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/81"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/81"
)
propertie = res.json() Response
{
"id": 81,
"name": "Port Jensen Cabin",
"slug": "port-jensen-cabin-81",
"type": "cabin",
"countryAlpha2": "NL",
"city": "Port Jensen",
"address": "60726 Central Street",
"latitude": -10.455373,
"longitude": 58.04974,
"bedrooms": 5,
"bathrooms": 2.5,
"maxGuests": 11,
"pricePerNight": 62.75,
"currency": "BRL",
"rating": 3.4,
"ratingCount": 1499,
"hostUserId": 139,
"createdAt": "2025-02-12T18:18:03.394Z",
"updatedAt": "2025-08-11T15:40:01.107Z"
}