example-data.com

showings / #178

listingId
House in East Eleazar · East Eleazar
prospectUserId
73
scheduledAt
status
cancelled
notes
Voluptatibus vulgus callide dolores debeo cito alveus tot.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/178"
)
showing = res.json()
{
  "id": 178,
  "listingId": 65,
  "prospectUserId": 73,
  "scheduledAt": "2026-05-08T15:28:43.958Z",
  "status": "cancelled",
  "notes": "Voluptatibus vulgus callide dolores debeo cito alveus tot.",
  "createdAt": "2026-05-10T00:37:08.815Z"
}
Draftbit