example-data.com

properties / #196

Shoreline House

house · Shoreline · $674.74/night · ★ 3.4 (1837)

51339 N Harrison Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/196"
)
propertie = res.json()
{
  "id": 196,
  "name": "Shoreline House",
  "slug": "shoreline-house-196",
  "type": "house",
  "countryAlpha2": "NG",
  "city": "Shoreline",
  "address": "51339 N Harrison Street",
  "latitude": 1.408152,
  "longitude": 15.785564,
  "bedrooms": 4,
  "bathrooms": 1.5,
  "maxGuests": 8,
  "pricePerNight": 674.74,
  "currency": "GBP",
  "rating": 3.4,
  "ratingCount": 1837,
  "hostUserId": 82,
  "createdAt": "2025-01-18T03:09:34.638Z",
  "updatedAt": "2025-09-05T15:14:55.023Z"
}
Draftbit