showings #301
- listingId
- Apartment in Duluth · Duluth
- prospectUserId
-
Kathleen Lynch @kathleen_lynch1
- scheduledAt
- status
- scheduled
- notes
- Venio cupiditas curia.
- createdAt
Overview
showings / #301
#301
#301
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/301" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/301" ); 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/301"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/301"
)
showing = res.json() Response
{
"id": 301,
"listingId": 112,
"prospectUserId": 139,
"scheduledAt": "2025-11-01T01:50:24.931Z",
"status": "scheduled",
"notes": "Venio cupiditas curia.",
"createdAt": "2025-10-22T23:50:15.903Z"
}