showings #101
- listingId
- Land in Fort King · Fort King
- prospectUserId
-
Simeon Heathcote @simeon_heathcote75
- scheduledAt
- status
- cancelled
- notes
- Civitas certe caelum usitas apto.
- createdAt
Overview
showings / #101
#101
#101
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/101" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/101" ); 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/101"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/101"
)
showing = res.json() Response
{
"id": 101,
"listingId": 36,
"prospectUserId": 224,
"scheduledAt": "2025-12-08T16:08:19.094Z",
"status": "cancelled",
"notes": "Civitas certe caelum usitas apto.",
"createdAt": "2025-11-20T05:32:24.170Z"
}