example-data.com

showings / #122

listingId
House in Johnson City · Johnson City
prospectUserId
159
scheduledAt
status
scheduled
notes
Canonicus eos atque quam tergiversatio nesciunt cruciamentum tener.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/122"
)
showing = res.json()
{
  "id": 122,
  "listingId": 45,
  "prospectUserId": 159,
  "scheduledAt": "2026-03-23T16:42:38.667Z",
  "status": "scheduled",
  "notes": "Canonicus eos atque quam tergiversatio nesciunt cruciamentum tener.",
  "createdAt": "2026-02-23T06:06:40.219Z"
}
Draftbit