example-data.com

properties / #53

Ceceliaview Apartment

apartment · Ceceliaview · $289.72/night · ★ 4.2 (1938)

9812 Post Road

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/53" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/53"
);
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/53"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/53"
)
propertie = res.json()
{
  "id": 53,
  "name": "Ceceliaview Apartment",
  "slug": "ceceliaview-apartment-53",
  "type": "apartment",
  "countryAlpha2": "EG",
  "city": "Ceceliaview",
  "address": "9812 Post Road",
  "latitude": -22.700583,
  "longitude": 140.025462,
  "bedrooms": 5,
  "bathrooms": 0.5,
  "maxGuests": 11,
  "pricePerNight": 289.72,
  "currency": "AED",
  "rating": 4.2,
  "ratingCount": 1938,
  "hostUserId": 212,
  "createdAt": "2026-02-04T16:22:11.023Z",
  "updatedAt": "2026-05-17T13:22:24.592Z"
}
Draftbit