example-data.com

showings / #235

listingId
Commercial Space in South Brandon · South Brandon
prospectUserId
21
scheduledAt
status
no_show
notes
Tergo ascit sapiente eum dedecor templum dapifer.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/235"
)
showing = res.json()
{
  "id": 235,
  "listingId": 88,
  "prospectUserId": 21,
  "scheduledAt": "2026-03-13T13:03:53.777Z",
  "status": "no_show",
  "notes": "Tergo ascit sapiente eum dedecor templum dapifer.",
  "createdAt": "2026-02-15T00:04:46.579Z"
}
Draftbit