showings #99
- listingId
- Land in Fort King · Fort King
- prospectUserId
-
Cindy Barrows @cindy_barrows20
- scheduledAt
- status
- cancelled
- notes
- Iste cerno maiores optio curtus.
- createdAt
Overview
showings / #99
#99
#99
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/99" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/99" ); 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/99"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/99"
)
showing = res.json() Response
{
"id": 99,
"listingId": 36,
"prospectUserId": 165,
"scheduledAt": "2025-10-28T15:38:10.418Z",
"status": "cancelled",
"notes": "Iste cerno maiores optio curtus.",
"createdAt": "2025-10-05T08:14:18.460Z"
}