example-data.com

showings / #34

listingId
House in South Ivah · South Ivah
prospectUserId
227
scheduledAt
status
scheduled
notes
Deprecator curvo eum angelus deporto.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/34"
)
showing = res.json()
{
  "id": 34,
  "listingId": 11,
  "prospectUserId": 227,
  "scheduledAt": "2025-05-29T22:59:20.972Z",
  "status": "scheduled",
  "notes": "Deprecator curvo eum angelus deporto.",
  "createdAt": "2025-05-03T22:58:02.493Z"
}
Draftbit