example-data.com
Menu
Browse docs and collections

Overview

properties / #177

West Mollie Villa

villa · West Mollie · $1226.86/night · ★ 2.7 (860)

10325 Bernie Valley

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 177,
  "name": "West Mollie Villa",
  "slug": "west-mollie-villa-177",
  "type": "villa",
  "countryAlpha2": "DE",
  "city": "West Mollie",
  "address": "10325 Bernie Valley",
  "latitude": -4.158576,
  "longitude": -135.181528,
  "bedrooms": 1,
  "bathrooms": 0.5,
  "maxGuests": 4,
  "pricePerNight": 1226.86,
  "currency": "JPY",
  "rating": 2.7,
  "ratingCount": 860,
  "hostUserId": 215,
  "createdAt": "2024-09-07T06:40:27.366Z",
  "updatedAt": "2025-11-21T22:18:23.121Z"
}