example-data.com
Menu
Browse docs and collections

Overview

properties / #88

Las Cruces Cabin

cabin · Las Cruces · $1101.84/night · ★ 2.7 (1846)

23482 McCullough Hollow

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 88,
  "name": "Las Cruces Cabin",
  "slug": "las-cruces-cabin-88",
  "type": "cabin",
  "countryAlpha2": "IN",
  "city": "Las Cruces",
  "address": "23482 McCullough Hollow",
  "latitude": 5.741638,
  "longitude": -163.228551,
  "bedrooms": 2,
  "bathrooms": 1,
  "maxGuests": 5,
  "pricePerNight": 1101.84,
  "currency": "AED",
  "rating": 2.7,
  "ratingCount": 1846,
  "hostUserId": 21,
  "createdAt": "2025-05-21T01:43:10.745Z",
  "updatedAt": "2026-04-06T11:57:47.830Z"
}