example-data.com
Menu
Browse docs and collections

Overview

properties / #27

Huntington Park Villa

villa · Huntington Park · $244.67/night · ★ 2.9 (161)

6554 Main Road

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 27,
  "name": "Huntington Park Villa",
  "slug": "huntington-park-villa-27",
  "type": "villa",
  "countryAlpha2": "IS",
  "city": "Huntington Park",
  "address": "6554 Main Road",
  "latitude": 6.738515,
  "longitude": -136.454347,
  "bedrooms": 4,
  "bathrooms": 0.5,
  "maxGuests": 5,
  "pricePerNight": 244.67,
  "currency": "GBP",
  "rating": 2.9,
  "ratingCount": 161,
  "hostUserId": 174,
  "createdAt": "2025-09-06T04:18:37.332Z",
  "updatedAt": "2026-01-23T10:46:08.086Z"
}