example-data.com
Menu
Browse docs and collections

Overview

properties / #53

Ceceliaview Apartment

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

9812 Post Road

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/properties/53" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/properties/53"
);
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/53"
);
const property = (await res.json()) as Property;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/53"
)
propertie = res.json()

Response

{
  "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"
}