example-data.com
Menu
Browse docs and collections

Overview

properties / #30

North Braden Condo

condo · North Braden · $661.75/night · ★ 3.7 (560)

2620 Feest Parkway

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 30,
  "name": "North Braden Condo",
  "slug": "north-braden-condo-30",
  "type": "condo",
  "countryAlpha2": "IS",
  "city": "North Braden",
  "address": "2620 Feest Parkway",
  "latitude": -22.260122,
  "longitude": 152.774717,
  "bedrooms": 1,
  "bathrooms": 4,
  "maxGuests": 4,
  "pricePerNight": 661.75,
  "currency": "EUR",
  "rating": 3.7,
  "ratingCount": 560,
  "hostUserId": 244,
  "createdAt": "2024-07-10T11:37:04.119Z",
  "updatedAt": "2025-03-18T19:57:19.421Z"
}