showings #398
- listingId
- Apartment in New Soniachester · New Soniachester
- prospectUserId
-
Alexa Rippin @alexa_rippin25
- scheduledAt
- status
- scheduled
- notes
- Dapifer aequitas crustulum stips acer tot desino certus laboriosam.
- createdAt
Overview
showings / #398
#398
#398
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/398" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/398" ); 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/398"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/398"
)
showing = res.json() Response
{
"id": 398,
"listingId": 148,
"prospectUserId": 235,
"scheduledAt": "2026-05-06T19:53:30.878Z",
"status": "scheduled",
"notes": "Dapifer aequitas crustulum stips acer tot desino certus laboriosam.",
"createdAt": "2026-05-09T02:39:07.118Z"
}