showings #98
- listingId
- House in New Carlos · New Carlos
- prospectUserId
-
Webster Skiles @webster_skiles39
- scheduledAt
- status
- completed
- notes
- Alii annus unde credo.
- createdAt
Overview
showings / #98
#98
#98
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/98" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/98" ); 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/98"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/98"
)
showing = res.json() Response
{
"id": 98,
"listingId": 35,
"prospectUserId": 5,
"scheduledAt": "2026-05-10T17:00:32.519Z",
"status": "completed",
"notes": "Alii annus unde credo.",
"createdAt": "2026-04-22T21:28:12.616Z"
}