example-data.com

showings / #126

listingId
House in Duluth · Duluth
prospectUserId
179
scheduledAt
status
no_show
notes
Vere non arca vis arbitro.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/126"
)
showing = res.json()
{
  "id": 126,
  "listingId": 46,
  "prospectUserId": 179,
  "scheduledAt": "2026-04-29T16:23:01.285Z",
  "status": "no_show",
  "notes": "Vere non arca vis arbitro.",
  "createdAt": "2026-05-06T07:57:19.051Z"
}
Draftbit