showings #330
- listingId
- Apartment in Lake Price · Lake Price
- prospectUserId
-
Colby Kovacek @colby_kovacek40
- scheduledAt
- status
- cancelled
- notes
- Alias cum tergo teres textus.
- createdAt
Overview
showings / #330
#330
#330
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/330" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/330" ); 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/330"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/330"
)
showing = res.json() Response
{
"id": 330,
"listingId": 121,
"prospectUserId": 85,
"scheduledAt": "2026-04-29T05:18:43.867Z",
"status": "cancelled",
"notes": "Alias cum tergo teres textus.",
"createdAt": "2026-05-02T11:30:38.392Z"
}