showings #383
- listingId
- House in Marquardtstead · Marquardtstead
- prospectUserId
-
Webster Skiles @webster_skiles39
- scheduledAt
- status
- scheduled
- notes
- Audax aqua itaque corrumpo aranea calculus angustus coniuratio pauci tenetur.
- createdAt
Overview
showings / #383
#383
#383
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/383" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/383" ); 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/383"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/383"
)
showing = res.json() Response
{
"id": 383,
"listingId": 142,
"prospectUserId": 5,
"scheduledAt": "2026-03-18T07:41:22.978Z",
"status": "scheduled",
"notes": "Audax aqua itaque corrumpo aranea calculus angustus coniuratio pauci tenetur.",
"createdAt": "2026-02-28T18:42:58.862Z"
}