Gloverboro Apartment
apartment · Gloverboro · $1363.79/night · ★ 5.0 (1643)
385 Nicola Vista
Overview
properties / #21
apartment · Gloverboro · $1363.79/night · ★ 5.0 (1643)
385 Nicola Vista
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/21" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/21" ); 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/21"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/21"
)
propertie = res.json() Response
{
"id": 21,
"name": "Gloverboro Apartment",
"slug": "gloverboro-apartment-21",
"type": "apartment",
"countryAlpha2": "IL",
"city": "Gloverboro",
"address": "385 Nicola Vista",
"latitude": 23.306819,
"longitude": 90.878305,
"bedrooms": 1,
"bathrooms": 0.5,
"maxGuests": 4,
"pricePerNight": 1363.79,
"currency": "MXN",
"rating": 5,
"ratingCount": 1643,
"hostUserId": 134,
"createdAt": "2025-01-05T18:06:17.904Z",
"updatedAt": "2025-02-21T23:47:29.766Z"
}