showings #67
- listingId
- Apartment in Lorain · Lorain
- prospectUserId
-
Roosevelt Ullrich @roosevelt.ullrich75
- scheduledAt
- status
- cancelled
- notes
- Curto speculum carbo amaritudo.
- createdAt
Overview
showings / #67
#67
#67
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/67" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/67" ); 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/67"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/67"
)
showing = res.json() Response
{
"id": 67,
"listingId": 21,
"prospectUserId": 237,
"scheduledAt": "2026-06-04T15:17:01.662Z",
"status": "cancelled",
"notes": "Curto speculum carbo amaritudo.",
"createdAt": "2026-05-20T12:31:34.273Z"
}