example-data.com

showings / #176

listingId
Apartment in North Marlenview · North Marlenview
prospectUserId
15
scheduledAt
status
no_show
notes
Coaegresco tempus ambitus defluo aestus depereo amoveo repellendus.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/176"
)
showing = res.json()
{
  "id": 176,
  "listingId": 64,
  "prospectUserId": 15,
  "scheduledAt": "2025-08-12T02:52:14.282Z",
  "status": "no_show",
  "notes": "Coaegresco tempus ambitus defluo aestus depereo amoveo repellendus.",
  "createdAt": "2025-07-28T05:33:32.138Z"
}
Draftbit