showings #107
- listingId
- Townhouse in Irvingborough · Irvingborough
- prospectUserId
-
Kennith Hahn @kennith.hahn
- scheduledAt
- status
- scheduled
- notes
- Tui tripudio virgo.
- createdAt
Overview
showings / #107
#107
#107
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/107" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/107" ); 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/107"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/107"
)
showing = res.json() Response
{
"id": 107,
"listingId": 39,
"prospectUserId": 201,
"scheduledAt": "2025-12-21T23:19:03.989Z",
"status": "scheduled",
"notes": "Tui tripudio virgo.",
"createdAt": "2025-12-19T08:31:33.360Z"
}