example-data.com
Menu
Browse docs and collections

Overview

properties / #51

Port Jeffery Condo

condo · Port Jeffery · $452.69/night · ★ 4.0 (1377)

5616 Mayfield Road

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 51,
  "name": "Port Jeffery Condo",
  "slug": "port-jeffery-condo-51",
  "type": "condo",
  "countryAlpha2": "PK",
  "city": "Port Jeffery",
  "address": "5616 Mayfield Road",
  "latitude": -49.014279,
  "longitude": -88.79873,
  "bedrooms": 5,
  "bathrooms": 3.5,
  "maxGuests": 4,
  "pricePerNight": 452.69,
  "currency": "AUD",
  "rating": 4,
  "ratingCount": 1377,
  "hostUserId": 132,
  "createdAt": "2026-01-04T16:18:45.868Z",
  "updatedAt": "2026-04-18T17:34:08.693Z"
}