example-data.com
Menu
Browse docs and collections

Overview

properties / #169

Pomona Villa

villa · Pomona · $629.35/night · ★ 3.3 (929)

8542 Harrison Avenue

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 169,
  "name": "Pomona Villa",
  "slug": "pomona-villa-169",
  "type": "villa",
  "countryAlpha2": "IL",
  "city": "Pomona",
  "address": "8542 Harrison Avenue",
  "latitude": -10.637726,
  "longitude": -147.419506,
  "bedrooms": 6,
  "bathrooms": 3,
  "maxGuests": 11,
  "pricePerNight": 629.35,
  "currency": "BRL",
  "rating": 3.3,
  "ratingCount": 929,
  "hostUserId": 195,
  "createdAt": "2025-07-11T16:31:53.016Z",
  "updatedAt": "2025-08-07T21:19:42.317Z"
}