example-data.com

showings / #19

listingId
House in South Maribelton · South Maribelton
prospectUserId
14
scheduledAt
status
completed
notes
Adinventitias consequatur custodia.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/19"
)
showing = res.json()
{
  "id": 19,
  "listingId": 6,
  "prospectUserId": 14,
  "scheduledAt": "2026-04-03T16:03:16.450Z",
  "status": "completed",
  "notes": "Adinventitias consequatur custodia.",
  "createdAt": "2026-04-10T03:59:16.552Z"
}
Draftbit