example-data.com

showings / #213

listingId
Apartment in Adamsbury · Adamsbury
prospectUserId
32
scheduledAt
status
completed
notes
Tutis cohibeo timor annus territo cohibeo solvo.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/213"
)
showing = res.json()
{
  "id": 213,
  "listingId": 80,
  "prospectUserId": 32,
  "scheduledAt": "2025-02-04T15:16:26.421Z",
  "status": "completed",
  "notes": "Tutis cohibeo timor annus territo cohibeo solvo.",
  "createdAt": "2025-02-08T23:51:34.385Z"
}
Draftbit