example-data.com

showings / #88

listingId
Apartment in South Marshall · South Marshall
prospectUserId
63
scheduledAt
status
scheduled
notes
Suppellex canto cubicularis cupiditas.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/88"
)
showing = res.json()
{
  "id": 88,
  "listingId": 30,
  "prospectUserId": 63,
  "scheduledAt": "2026-06-03T17:09:15.223Z",
  "status": "scheduled",
  "notes": "Suppellex canto cubicularis cupiditas.",
  "createdAt": "2026-05-07T00:19:16.491Z"
}
Draftbit