example-data.com

showings / #66

listingId
Apartment in Lorain · Lorain
prospectUserId
78
scheduledAt
status
no_show
notes
Facere error uterque consequatur compono acerbitas.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/66"
)
showing = res.json()
{
  "id": 66,
  "listingId": 21,
  "prospectUserId": 78,
  "scheduledAt": "2026-04-28T22:52:39.391Z",
  "status": "no_show",
  "notes": "Facere error uterque consequatur compono acerbitas.",
  "createdAt": "2026-05-03T04:22:52.643Z"
}
Draftbit