showings #269
- listingId
- House in Seanhaven · Seanhaven
- prospectUserId
-
Karolann Legros @karolann_legros
- scheduledAt
- status
- scheduled
- notes
- Et calamitas bibo utor.
- createdAt
Overview
showings / #269
#269
#269
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/269" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/269" ); 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/269"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/269"
)
showing = res.json() Response
{
"id": 269,
"listingId": 101,
"prospectUserId": 246,
"scheduledAt": "2026-06-05T11:13:11.505Z",
"status": "scheduled",
"notes": "Et calamitas bibo utor.",
"createdAt": "2026-05-06T14:14:53.737Z"
}