example-data.com

properties / #5

North Maeganside Villa

villa · North Maeganside · $133.25/night · ★ 3.6 (198)

76735 Carrie Skyway

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/5"
)
propertie = res.json()
{
  "id": 5,
  "name": "North Maeganside Villa",
  "slug": "north-maeganside-villa-5",
  "type": "villa",
  "countryAlpha2": "EG",
  "city": "North Maeganside",
  "address": "76735 Carrie Skyway",
  "latitude": 4.780191,
  "longitude": -142.245845,
  "bedrooms": 1,
  "bathrooms": 2,
  "maxGuests": 1,
  "pricePerNight": 133.25,
  "currency": "EUR",
  "rating": 3.6,
  "ratingCount": 198,
  "hostUserId": 100,
  "createdAt": "2026-03-09T01:45:24.319Z",
  "updatedAt": "2026-04-24T20:07:48.393Z"
}
Draftbit