example-data.com

properties / #74

Fort Ova Apartment

apartment · Fort Ova · $404.69/night · ★ 3.5 (1750)

9643 Parisian Bypass

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/74"
)
propertie = res.json()
{
  "id": 74,
  "name": "Fort Ova Apartment",
  "slug": "fort-ova-apartment-74",
  "type": "apartment",
  "countryAlpha2": "NG",
  "city": "Fort Ova",
  "address": "9643 Parisian Bypass",
  "latitude": -8.279808,
  "longitude": -47.58464,
  "bedrooms": 1,
  "bathrooms": 4,
  "maxGuests": 2,
  "pricePerNight": 404.69,
  "currency": "GBP",
  "rating": 3.5,
  "ratingCount": 1750,
  "hostUserId": 146,
  "createdAt": "2025-04-19T04:19:19.991Z",
  "updatedAt": "2025-09-06T08:50:29.962Z"
}
Draftbit