example-data.com

showings / #208

listingId
House in Fort Sterling · Fort Sterling
prospectUserId
242
scheduledAt
status
completed
notes
Terebro pecus utroque desidero admiratio cerno admoneo odit vitae videlicet.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/208"
)
showing = res.json()
{
  "id": 208,
  "listingId": 77,
  "prospectUserId": 242,
  "scheduledAt": "2026-03-05T00:50:52.581Z",
  "status": "completed",
  "notes": "Terebro pecus utroque desidero admiratio cerno admoneo odit vitae videlicet.",
  "createdAt": "2026-02-26T11:16:53.526Z"
}
Draftbit