showings #88
- listingId
- Apartment in South Marshall · South Marshall
- prospectUserId
-
Theresia Collins @theresia_collins86
- scheduledAt
- status
- scheduled
- notes
- Suppellex canto cubicularis cupiditas.
- createdAt
Overview
showings / #88
#88
#88
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/88" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/88" ); 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/88"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/88"
)
showing = res.json() Response
{
"id": 88,
"listingId": 30,
"prospectUserId": 63,
"scheduledAt": "2026-06-03T17:09:15.223Z",
"status": "scheduled",
"notes": "Suppellex canto cubicularis cupiditas.",
"createdAt": "2026-05-07T00:19:16.491Z"
}