example-data.com

showings / #197

listingId
Apartment in Port Marley · Port Marley
prospectUserId
220
scheduledAt
status
no_show
notes
Sono decet confero articulus deludo ultio amicitia tabesco atrox.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/197"
)
showing = res.json()
{
  "id": 197,
  "listingId": 73,
  "prospectUserId": 220,
  "scheduledAt": "2025-12-23T05:08:04.373Z",
  "status": "no_show",
  "notes": "Sono decet confero articulus deludo ultio amicitia tabesco atrox.",
  "createdAt": "2025-12-06T13:09:15.074Z"
}
Draftbit