showings #404
- listingId
- Apartment in Brainstad · Brainstad
- prospectUserId
-
Hilda Crooks @hilda_crooks61
- scheduledAt
- status
- completed
- notes
- Corporis velit pauci aestus neque sit cresco titulus ver colligo.
- createdAt
Overview
showings / #404
#404
#404
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/404" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/404" ); 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/404"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/404"
)
showing = res.json() Response
{
"id": 404,
"listingId": 150,
"prospectUserId": 187,
"scheduledAt": "2025-12-08T12:26:24.554Z",
"status": "completed",
"notes": "Corporis velit pauci aestus neque sit cresco titulus ver colligo.",
"createdAt": "2025-11-09T21:40:24.498Z"
}