example-data.com

showings / #139

listingId
House in Albany · Albany
prospectUserId
5
scheduledAt
status
cancelled
notes
Curia claro nulla.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/139"
)
showing = res.json()
{
  "id": 139,
  "listingId": 52,
  "prospectUserId": 5,
  "scheduledAt": "2025-06-19T01:38:41.379Z",
  "status": "cancelled",
  "notes": "Curia claro nulla.",
  "createdAt": "2025-06-24T02:33:02.027Z"
}
Draftbit