showings #6
- listingId
- House in New Otiliatown · New Otiliatown
- prospectUserId
-
Florencio Mohr @florencio_mohr
- scheduledAt
- status
- completed
- notes
- Strues ter coaegresco tutis tempora amplus solus.
- createdAt
Overview
showings / #6
#6
#6
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/6" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/6" ); 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/6"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/6"
)
showing = res.json() Response
{
"id": 6,
"listingId": 2,
"prospectUserId": 71,
"scheduledAt": "2026-05-08T09:08:05.404Z",
"status": "completed",
"notes": "Strues ter coaegresco tutis tempora amplus solus.",
"createdAt": "2026-05-14T20:06:25.772Z"
}