example-data.com

showings / #25

listingId
Land in South Emmie · South Emmie
prospectUserId
226
scheduledAt
status
completed
notes
Constans cupiditate surculus textor dicta triumphus tempora facere.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/25"
)
showing = res.json()
{
  "id": 25,
  "listingId": 7,
  "prospectUserId": 226,
  "scheduledAt": "2026-05-19T13:27:28.764Z",
  "status": "completed",
  "notes": "Constans cupiditate surculus textor dicta triumphus tempora facere.",
  "createdAt": "2026-05-11T10:47:25.318Z"
}
Draftbit