example-data.com

showings / #87

listingId
Apartment in South Marshall · South Marshall
prospectUserId
100
scheduledAt
status
cancelled
notes
Absque assentator rem provident adaugeo.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/87"
)
showing = res.json()
{
  "id": 87,
  "listingId": 30,
  "prospectUserId": 100,
  "scheduledAt": "2026-04-23T04:40:02.922Z",
  "status": "cancelled",
  "notes": "Absque assentator rem provident adaugeo.",
  "createdAt": "2026-04-07T17:32:55.091Z"
}
Draftbit