example-data.com

showings / #1

listingId
Apartment in Alizestad · Alizestad
prospectUserId
135
scheduledAt
status
cancelled
notes
Comis eligendi peccatus error quibusdam.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/1"
)
showing = res.json()
{
  "id": 1,
  "listingId": 1,
  "prospectUserId": 135,
  "scheduledAt": "2025-08-01T08:26:47.823Z",
  "status": "cancelled",
  "notes": "Comis eligendi peccatus error quibusdam.",
  "createdAt": "2025-08-01T22:59:01.722Z"
}
Draftbit