showings #366
- listingId
- Condo in Fort Evieshire · Fort Evieshire
- prospectUserId
-
Jennifer Stoltenberg @jennifer_stoltenberg
- scheduledAt
- status
- scheduled
- notes
- Veritatis totam concido veritas territo averto conscendo quas.
- createdAt
Overview
showings / #366
#366
#366
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/366" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/366" ); 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/366"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/366"
)
showing = res.json() Response
{
"id": 366,
"listingId": 135,
"prospectUserId": 25,
"scheduledAt": "2025-08-20T03:36:52.576Z",
"status": "scheduled",
"notes": "Veritatis totam concido veritas territo averto conscendo quas.",
"createdAt": "2025-07-23T03:12:10.671Z"
}