example-data.com

showings / #20

listingId
House in South Maribelton · South Maribelton
prospectUserId
153
scheduledAt
status
completed
notes
Demonstro vilitas ocer absconditus spes caput hic.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/20"
)
showing = res.json()
{
  "id": 20,
  "listingId": 6,
  "prospectUserId": 153,
  "scheduledAt": "2026-02-02T05:07:05.013Z",
  "status": "completed",
  "notes": "Demonstro vilitas ocer absconditus spes caput hic.",
  "createdAt": "2026-01-24T01:29:35.952Z"
}
Draftbit