example-data.com

showings / #103

listingId
House in East Deion · East Deion
prospectUserId
49
scheduledAt
status
completed
notes
Cum denego tero exercitationem terga odit.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/103"
)
showing = res.json()
{
  "id": 103,
  "listingId": 38,
  "prospectUserId": 49,
  "scheduledAt": "2026-03-16T02:38:13.933Z",
  "status": "completed",
  "notes": "Cum denego tero exercitationem terga odit.",
  "createdAt": "2026-02-18T21:13:29.135Z"
}
Draftbit