example-data.com
Menu
Browse docs and collections

Overview

properties / #61

Missoula Condo

condo · Missoula · $909.43/night · ★ 3.7 (1406)

5823 O'Keefe Locks

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 61,
  "name": "Missoula Condo",
  "slug": "missoula-condo-61",
  "type": "condo",
  "countryAlpha2": "JP",
  "city": "Missoula",
  "address": "5823 O'Keefe Locks",
  "latitude": -28.623744,
  "longitude": -120.632445,
  "bedrooms": 3,
  "bathrooms": 3.5,
  "maxGuests": 8,
  "pricePerNight": 909.43,
  "currency": "AED",
  "rating": 3.7,
  "ratingCount": 1406,
  "hostUserId": 14,
  "createdAt": "2025-07-11T00:19:25.562Z",
  "updatedAt": "2025-09-25T22:52:10.631Z"
}