example-data.com

showings / #100

listingId
Land in Fort King · Fort King
prospectUserId
19
scheduledAt
status
completed
notes
Vinum decretum molestias.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/100"
)
showing = res.json()
{
  "id": 100,
  "listingId": 36,
  "prospectUserId": 19,
  "scheduledAt": "2025-05-20T05:23:26.908Z",
  "status": "completed",
  "notes": "Vinum decretum molestias.",
  "createdAt": "2025-05-11T12:18:35.897Z"
}
Draftbit