example-data.com

showings / #61

listingId
Land in Gerlachshire · Gerlachshire
prospectUserId
131
scheduledAt
status
no_show
notes
Ad villa dens inventore amita ea denuncio tremo cinis.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/61"
)
showing = res.json()
{
  "id": 61,
  "listingId": 19,
  "prospectUserId": 131,
  "scheduledAt": "2026-05-16T16:49:30.565Z",
  "status": "no_show",
  "notes": "Ad villa dens inventore amita ea denuncio tremo cinis.",
  "createdAt": "2026-05-06T14:35:13.082Z"
}
Draftbit