showings #457
- listingId
- Condo in Great Falls · Great Falls
- prospectUserId
-
General Morissette @general_morissette47
- scheduledAt
- status
- no_show
- notes
- Sulum calcar tibi tubineus xiphias crepusculum utor.
- createdAt
Overview
showings / #457
#457
#457
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/457" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/457" ); const showing = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/showings.d.ts https://example-data.com/types/showings.d.ts
import type { Showing } from "./types/showings";
const res = await fetch(
"https://example-data.com/api/v1/showings/457"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/457"
)
showing = res.json() Response
{
"id": 457,
"listingId": 172,
"prospectUserId": 184,
"scheduledAt": "2026-06-17T01:58:00.959Z",
"status": "no_show",
"notes": "Sulum calcar tibi tubineus xiphias crepusculum utor.",
"createdAt": "2026-05-19T23:24:45.382Z"
}