showings #227
- listingId
- Apartment in Fort Rhianna · Fort Rhianna
- prospectUserId
-
Alanna Kilback @alanna_kilback31
- scheduledAt
- status
- cancelled
- notes
- Ullam perspiciatis aegrotatio creber infit venia maxime officia.
- createdAt
Overview
showings / #227
#227
#227
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/227" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/227" ); 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/227"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/227"
)
showing = res.json() Response
{
"id": 227,
"listingId": 86,
"prospectUserId": 14,
"scheduledAt": "2025-07-13T00:26:51.959Z",
"status": "cancelled",
"notes": "Ullam perspiciatis aegrotatio creber infit venia maxime officia.",
"createdAt": "2025-06-18T08:07:49.802Z"
}