showings #19
- listingId
- House in South Maribelton · South Maribelton
- prospectUserId
-
Alanna Kilback @alanna_kilback31
- scheduledAt
- status
- completed
- notes
- Adinventitias consequatur custodia.
- createdAt
Overview
showings / #19
#19
#19
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/19" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/19" ); 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/19"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/19"
)
showing = res.json() Response
{
"id": 19,
"listingId": 6,
"prospectUserId": 14,
"scheduledAt": "2026-04-03T16:03:16.450Z",
"status": "completed",
"notes": "Adinventitias consequatur custodia.",
"createdAt": "2026-04-10T03:59:16.552Z"
}