Coon Rapids Loft
loft · Coon Rapids · $1340/night · ★ 3.6 (157)
3099 West Lane
Overview
properties / #121
loft · Coon Rapids · $1340/night · ★ 3.6 (157)
3099 West Lane
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/121" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/121" ); 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/121"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/121"
)
propertie = res.json() Response
{
"id": 121,
"name": "Coon Rapids Loft",
"slug": "coon-rapids-loft-121",
"type": "loft",
"countryAlpha2": "GB",
"city": "Coon Rapids",
"address": "3099 West Lane",
"latitude": 34.956008,
"longitude": 92.079226,
"bedrooms": 1,
"bathrooms": 1,
"maxGuests": 3,
"pricePerNight": 1340,
"currency": "USD",
"rating": 3.6,
"ratingCount": 157,
"hostUserId": 32,
"createdAt": "2026-01-06T16:22:08.786Z",
"updatedAt": "2026-02-10T23:09:26.930Z"
}