example-data.com

showings / #70

listingId
Apartment in Sengerberg · Sengerberg
prospectUserId
247
scheduledAt
status
cancelled
notes
Depopulo amiculum via aer accedo summa vigor.
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/showings/70" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/showings/70"
);
const showing = await res.json();
import type { Showing } from "https://example-data.com/types/showings.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/showings/70"
);
const showing = (await res.json()) as Showing;
import requests

res = requests.get(
    "https://example-data.com/api/v1/showings/70"
)
showing = res.json()
{
  "id": 70,
  "listingId": 22,
  "prospectUserId": 247,
  "scheduledAt": "2025-04-16T17:53:55.120Z",
  "status": "cancelled",
  "notes": "Depopulo amiculum via aer accedo summa vigor.",
  "createdAt": "2025-03-30T08:33:29.148Z"
}
Draftbit