example-data.com
Menu
Browse docs and collections

Overview

properties / #46

New Terrillfurt Condo

condo · New Terrillfurt · $89.22/night · ★ 5.0 (1729)

56689 Jacobs Ranch

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 46,
  "name": "New Terrillfurt Condo",
  "slug": "new-terrillfurt-condo-46",
  "type": "condo",
  "countryAlpha2": "NZ",
  "city": "New Terrillfurt",
  "address": "56689 Jacobs Ranch",
  "latitude": 12.977994,
  "longitude": -127.875706,
  "bedrooms": 1,
  "bathrooms": 3.5,
  "maxGuests": 4,
  "pricePerNight": 89.22,
  "currency": "AED",
  "rating": 5,
  "ratingCount": 1729,
  "hostUserId": 120,
  "createdAt": "2025-03-22T09:20:40.101Z",
  "updatedAt": "2025-09-02T16:50:00.723Z"
}