showings #369
- listingId
- Condo in Fort Evieshire · Fort Evieshire
- prospectUserId
-
Gudrun Brakus @gudrun_brakus
- scheduledAt
- status
- completed
- notes
- Curtus vespillo tempore umbra crastinus cupio.
- createdAt
Overview
showings / #369
#369
#369
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/369" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/369" ); 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/369"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/369"
)
showing = res.json() Response
{
"id": 369,
"listingId": 135,
"prospectUserId": 230,
"scheduledAt": "2025-06-23T01:23:19.824Z",
"status": "completed",
"notes": "Curtus vespillo tempore umbra crastinus cupio.",
"createdAt": "2025-05-27T23:46:41.021Z"
}