showings #251
- listingId
- Condo in Lubowitzfort · Lubowitzfort
- prospectUserId
-
Virginie O'Connell @virginie.oconnell55
- scheduledAt
- status
- scheduled
- notes
- Ex amita varius sublime corpus speculum torrens cur toties.
- createdAt
Overview
showings / #251
#251
#251
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/251" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/251" ); 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/251"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/251"
)
showing = res.json() Response
{
"id": 251,
"listingId": 95,
"prospectUserId": 70,
"scheduledAt": "2026-03-08T00:28:19.689Z",
"status": "scheduled",
"notes": "Ex amita varius sublime corpus speculum torrens cur toties.",
"createdAt": "2026-02-24T23:16:15.335Z"
}