example-data.com

properties / #21

Gloverboro Apartment

apartment · Gloverboro · $1363.79/night · ★ 5.0 (1643)

385 Nicola Vista

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/21" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/21"
);
const propertie = await res.json();
import type { Propertie } from "https://example-data.com/types/properties.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/properties/21"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/21"
)
propertie = res.json()
{
  "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"
}
Draftbit