example-data.com

showings / #209

listingId
House in Fort Sterling · Fort Sterling
prospectUserId
136
scheduledAt
status
completed
notes
Voco contego ascit.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/209"
)
showing = res.json()
{
  "id": 209,
  "listingId": 77,
  "prospectUserId": 136,
  "scheduledAt": "2025-02-12T06:37:58.506Z",
  "status": "completed",
  "notes": "Voco contego ascit.",
  "createdAt": "2025-01-20T00:17:15.617Z"
}
Draftbit