example-data.com
Menu
Browse docs and collections

Overview

properties / #139

Port Geovanychester Condo

condo · Port Geovanychester · $523.98/night · ★ 3.3 (277)

55213 Asia Shores

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 139,
  "name": "Port Geovanychester Condo",
  "slug": "port-geovanychester-condo-139",
  "type": "condo",
  "countryAlpha2": "VN",
  "city": "Port Geovanychester",
  "address": "55213 Asia Shores",
  "latitude": -23.175059,
  "longitude": 37.076244,
  "bedrooms": 1,
  "bathrooms": 0.5,
  "maxGuests": 1,
  "pricePerNight": 523.98,
  "currency": "JPY",
  "rating": 3.3,
  "ratingCount": 277,
  "hostUserId": 194,
  "createdAt": "2025-03-30T11:40:14.347Z",
  "updatedAt": "2025-07-27T19:40:30.270Z"
}