example-data.com

showings / #133

listingId
House in Yorba Linda · Yorba Linda
prospectUserId
166
scheduledAt
status
completed
notes
Tabernus eum porro stultus cupio terreo.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/133"
)
showing = res.json()
{
  "id": 133,
  "listingId": 50,
  "prospectUserId": 166,
  "scheduledAt": "2025-02-06T17:32:11.822Z",
  "status": "completed",
  "notes": "Tabernus eum porro stultus cupio terreo.",
  "createdAt": "2025-01-25T03:31:07.804Z"
}
Draftbit