example-data.com

showings / #38

listingId
House in La Mirada · La Mirada
prospectUserId
182
scheduledAt
status
cancelled
notes
Socius cogito theatrum sapiente fugiat vitae alo.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/38"
)
showing = res.json()
{
  "id": 38,
  "listingId": 12,
  "prospectUserId": 182,
  "scheduledAt": "2025-12-22T00:55:24.820Z",
  "status": "cancelled",
  "notes": "Socius cogito theatrum sapiente fugiat vitae alo.",
  "createdAt": "2025-12-03T21:13:33.434Z"
}
Draftbit