example-data.com

showings / #174

listingId
House in West Lemuel · West Lemuel
prospectUserId
149
scheduledAt
status
scheduled
notes
Cohibeo arbitro umerus trado abbas tantillus ea anser.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/174"
)
showing = res.json()
{
  "id": 174,
  "listingId": 63,
  "prospectUserId": 149,
  "scheduledAt": "2025-10-03T06:03:38.063Z",
  "status": "scheduled",
  "notes": "Cohibeo arbitro umerus trado abbas tantillus ea anser.",
  "createdAt": "2025-09-30T18:39:46.298Z"
}
Draftbit