showings #371
- listingId
- Land in North Maida · North Maida
- prospectUserId
-
Kathleen Lynch @kathleen_lynch1
- scheduledAt
- status
- scheduled
- notes
- Cometes rerum conqueror accusamus talio vos tenus delicate aetas vilitas.
- createdAt
Overview
showings / #371
#371
#371
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/371" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/371" ); 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/371"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/371"
)
showing = res.json() Response
{
"id": 371,
"listingId": 137,
"prospectUserId": 139,
"scheduledAt": "2024-12-09T08:47:28.515Z",
"status": "scheduled",
"notes": "Cometes rerum conqueror accusamus talio vos tenus delicate aetas vilitas.",
"createdAt": "2024-11-19T19:32:56.533Z"
}