showings #141
- listingId
- Apartment in Terrenceburgh · Terrenceburgh
- prospectUserId
-
Santa Corwin @santa.corwin59
- scheduledAt
- status
- scheduled
- notes
- Amplitudo conitor appositus succurro laboriosam timor.
- createdAt
Overview
showings / #141
#141
#141
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/141" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/141" ); 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/141"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/141"
)
showing = res.json() Response
{
"id": 141,
"listingId": 54,
"prospectUserId": 247,
"scheduledAt": "2026-01-01T12:00:06.529Z",
"status": "scheduled",
"notes": "Amplitudo conitor appositus succurro laboriosam timor.",
"createdAt": "2026-01-03T22:15:13.168Z"
}