example-data.com

showings / #86

listingId
Apartment in South Marshall · South Marshall
prospectUserId
135
scheduledAt
status
completed
notes
Nesciunt cena alias.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/86"
)
showing = res.json()
{
  "id": 86,
  "listingId": 30,
  "prospectUserId": 135,
  "scheduledAt": "2026-04-03T06:50:06.194Z",
  "status": "completed",
  "notes": "Nesciunt cena alias.",
  "createdAt": "2026-04-06T05:44:05.722Z"
}
Draftbit