showings #37
- listingId
- House in La Mirada · La Mirada
- prospectUserId
-
Marcelina Grady @marcelina_grady19
- scheduledAt
- status
- completed
- notes
- Capto aestivus necessitatibus.
- createdAt
Overview
showings / #37
#37
#37
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/37" ); 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/37"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/37"
)
showing = res.json() Response
{
"id": 37,
"listingId": 12,
"prospectUserId": 241,
"scheduledAt": "2026-03-07T17:20:56.189Z",
"status": "completed",
"notes": "Capto aestivus necessitatibus.",
"createdAt": "2026-02-26T18:11:17.049Z"
}