example-data.com
Menu
Browse docs and collections

Overview

properties / #130

Nitzschechester Villa

villa · Nitzschechester · $1250.63/night · ★ 3.5 (25)

26231 Poplar Road

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 130,
  "name": "Nitzschechester Villa",
  "slug": "nitzschechester-villa-130",
  "type": "villa",
  "countryAlpha2": "PH",
  "city": "Nitzschechester",
  "address": "26231 Poplar Road",
  "latitude": -27.851665,
  "longitude": -160.751803,
  "bedrooms": 0,
  "bathrooms": 4,
  "maxGuests": 2,
  "pricePerNight": 1250.63,
  "currency": "BRL",
  "rating": 3.5,
  "ratingCount": 25,
  "hostUserId": 51,
  "createdAt": "2025-10-11T03:29:59.239Z",
  "updatedAt": "2025-11-23T01:18:41.444Z"
}