example-data.com

properties / #184

Fort Derekfield Condo

condo · Fort Derekfield · $999.3/night · ★ 4.8 (1402)

35724 Ortiz Field

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/184"
)
propertie = res.json()
{
  "id": 184,
  "name": "Fort Derekfield Condo",
  "slug": "fort-derekfield-condo-184",
  "type": "condo",
  "countryAlpha2": "MX",
  "city": "Fort Derekfield",
  "address": "35724 Ortiz Field",
  "latitude": -41.183939,
  "longitude": -129.314345,
  "bedrooms": 2,
  "bathrooms": 1,
  "maxGuests": 6,
  "pricePerNight": 999.3,
  "currency": "AED",
  "rating": 4.8,
  "ratingCount": 1402,
  "hostUserId": 156,
  "createdAt": "2025-05-20T16:09:35.206Z",
  "updatedAt": "2026-03-07T09:58:50.761Z"
}
Draftbit