showings #414
- listingId
- House in West Floy · West Floy
- prospectUserId
-
Talon Turner @talon.turner59
- scheduledAt
- status
- scheduled
- notes
- Cervus curiositas cornu.
- createdAt
Overview
showings / #414
#414
#414
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/414" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/414" ); 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/414"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/414"
)
showing = res.json() Response
{
"id": 414,
"listingId": 154,
"prospectUserId": 166,
"scheduledAt": "2025-08-01T17:09:13.658Z",
"status": "scheduled",
"notes": "Cervus curiositas cornu.",
"createdAt": "2025-07-27T01:12:22.719Z"
}