example-data.com

properties / #75

New Johathan Condo

condo · New Johathan · $1196.12/night · ★ 3.1 (142)

682 Gutmann Glen

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/75" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/75"
);
const propertie = await res.json();
import type { Propertie } from "https://example-data.com/types/properties.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/properties/75"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/75"
)
propertie = res.json()
{
  "id": 75,
  "name": "New Johathan Condo",
  "slug": "new-johathan-condo-75",
  "type": "condo",
  "countryAlpha2": "CN",
  "city": "New Johathan",
  "address": "682 Gutmann Glen",
  "latitude": -47.376402,
  "longitude": 69.716738,
  "bedrooms": 1,
  "bathrooms": 4,
  "maxGuests": 1,
  "pricePerNight": 1196.12,
  "currency": "AED",
  "rating": 3.1,
  "ratingCount": 142,
  "hostUserId": 60,
  "createdAt": "2024-09-21T17:08:11.698Z",
  "updatedAt": "2026-03-23T02:16:46.545Z"
}
Draftbit