showings #276
- listingId
- Apartment in Flint · Flint
- prospectUserId
-
Ari Howe @ari.howe73
- scheduledAt
- status
- completed
- notes
- Surgo abutor exercitationem statim decerno adipiscor vae.
- createdAt
Overview
showings / #276
#276
#276
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/276" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/276" ); 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/276"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/276"
)
showing = res.json() Response
{
"id": 276,
"listingId": 103,
"prospectUserId": 167,
"scheduledAt": "2026-04-07T13:17:18.761Z",
"status": "completed",
"notes": "Surgo abutor exercitationem statim decerno adipiscor vae.",
"createdAt": "2026-03-29T14:19:16.455Z"
}