showings #410
- listingId
- House in Lake Stanton · Lake Stanton
- prospectUserId
-
Jolie Abernathy @jolie_abernathy33
- scheduledAt
- status
- completed
- notes
- Ago administratio abeo bestia porro summisse cruentus eligendi.
- createdAt
Overview
showings / #410
#410
#410
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/410" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/410" ); 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/410"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/410"
)
showing = res.json() Response
{
"id": 410,
"listingId": 153,
"prospectUserId": 50,
"scheduledAt": "2025-09-23T01:32:07.102Z",
"status": "completed",
"notes": "Ago administratio abeo bestia porro summisse cruentus eligendi.",
"createdAt": "2025-09-03T00:02:39.063Z"
}