example-data.com

properties / #126

North Theronborough Condo

condo · North Theronborough · $607.52/night · ★ 4.5 (1042)

47632 Raoul Ridges

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/126" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/126"
);
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/126"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/126"
)
propertie = res.json()
{
  "id": 126,
  "name": "North Theronborough Condo",
  "slug": "north-theronborough-condo-126",
  "type": "condo",
  "countryAlpha2": "GR",
  "city": "North Theronborough",
  "address": "47632 Raoul Ridges",
  "latitude": -3.262111,
  "longitude": -107.639244,
  "bedrooms": 1,
  "bathrooms": 1,
  "maxGuests": 3,
  "pricePerNight": 607.52,
  "currency": "MXN",
  "rating": 4.5,
  "ratingCount": 1042,
  "hostUserId": 26,
  "createdAt": "2025-09-23T01:05:34.827Z",
  "updatedAt": "2026-05-14T22:06:20.152Z"
}
Draftbit