example-data.com

showings / #205

listingId
Condo in Billings · Billings
prospectUserId
55
scheduledAt
status
completed
notes
Cui aperiam verecundia antiquus amita.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/205"
)
showing = res.json()
{
  "id": 205,
  "listingId": 76,
  "prospectUserId": 55,
  "scheduledAt": "2025-04-09T08:02:44.436Z",
  "status": "completed",
  "notes": "Cui aperiam verecundia antiquus amita.",
  "createdAt": "2025-03-24T05:04:20.218Z"
}
Draftbit