example-data.com
Menu
Browse docs and collections

Overview

properties / #96

Kreigerfurt Condo

condo · Kreigerfurt · $1182.89/night · ★ 3.7 (1356)

6893 St George's Road

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 96,
  "name": "Kreigerfurt Condo",
  "slug": "kreigerfurt-condo-96",
  "type": "condo",
  "countryAlpha2": "MA",
  "city": "Kreigerfurt",
  "address": "6893 St George's Road",
  "latitude": -28.998241,
  "longitude": 154.704498,
  "bedrooms": 3,
  "bathrooms": 3.5,
  "maxGuests": 6,
  "pricePerNight": 1182.89,
  "currency": "MXN",
  "rating": 3.7,
  "ratingCount": 1356,
  "hostUserId": 13,
  "createdAt": "2024-06-20T17:21:33.783Z",
  "updatedAt": "2026-04-29T23:26:01.444Z"
}