example-data.com

showings / #85

listingId
Apartment in South Marshall · South Marshall
prospectUserId
46
scheduledAt
status
completed
notes
Strues tutamen vilicus vomica.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/85"
)
showing = res.json()
{
  "id": 85,
  "listingId": 30,
  "prospectUserId": 46,
  "scheduledAt": "2026-05-02T06:19:47.540Z",
  "status": "completed",
  "notes": "Strues tutamen vilicus vomica.",
  "createdAt": "2026-04-05T17:56:42.274Z"
}
Draftbit