example-data.com

showings / #212

listingId
Townhouse in Port Libbie · Port Libbie
prospectUserId
69
scheduledAt
status
cancelled
notes
Valeo tabesco adulescens.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/212"
)
showing = res.json()
{
  "id": 212,
  "listingId": 79,
  "prospectUserId": 69,
  "scheduledAt": "2025-04-15T16:56:51.861Z",
  "status": "cancelled",
  "notes": "Valeo tabesco adulescens.",
  "createdAt": "2025-03-25T02:23:35.977Z"
}
Draftbit