example-data.com

showings / #227

listingId
Apartment in Fort Rhianna · Fort Rhianna
prospectUserId
14
scheduledAt
status
cancelled
notes
Ullam perspiciatis aegrotatio creber infit venia maxime officia.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/227"
)
showing = res.json()
{
  "id": 227,
  "listingId": 86,
  "prospectUserId": 14,
  "scheduledAt": "2025-07-13T00:26:51.959Z",
  "status": "cancelled",
  "notes": "Ullam perspiciatis aegrotatio creber infit venia maxime officia.",
  "createdAt": "2025-06-18T08:07:49.802Z"
}
Draftbit