showings #392
- listingId
- Apartment in Katlynnhaven · Katlynnhaven
- prospectUserId
-
Lenny Howe @lenny.howe
- scheduledAt
- status
- scheduled
- notes
- Curtus deripio viduo.
- createdAt
Overview
showings / #392
#392
#392
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/392" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/392" ); 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/392"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/392"
)
showing = res.json() Response
{
"id": 392,
"listingId": 146,
"prospectUserId": 37,
"scheduledAt": "2026-05-30T11:56:03.948Z",
"status": "scheduled",
"notes": "Curtus deripio viduo.",
"createdAt": "2026-05-01T01:10:53.808Z"
}