example-data.com

showings / #145

listingId
House in Lake Guillermo · Lake Guillermo
prospectUserId
80
scheduledAt
status
no_show
notes
Doloremque error villa compono arma cena terebro.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/145"
)
showing = res.json()
{
  "id": 145,
  "listingId": 55,
  "prospectUserId": 80,
  "scheduledAt": "2026-04-04T15:33:03.993Z",
  "status": "no_show",
  "notes": "Doloremque error villa compono arma cena terebro.",
  "createdAt": "2026-03-31T10:12:33.166Z"
}
Draftbit