showings #348
- listingId
- House in South Carley · South Carley
- prospectUserId
-
Stephan Heller @stephan.heller
- scheduledAt
- status
- cancelled
- notes
- Tristis sequi cum cumque aegrotatio.
- createdAt
Overview
showings / #348
#348
#348
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/348" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/348" ); 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/348"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/348"
)
showing = res.json() Response
{
"id": 348,
"listingId": 127,
"prospectUserId": 82,
"scheduledAt": "2025-08-22T12:12:50.457Z",
"status": "cancelled",
"notes": "Tristis sequi cum cumque aegrotatio.",
"createdAt": "2025-08-04T22:07:40.898Z"
}