showings #275
- listingId
- Apartment in Flint · Flint
- prospectUserId
-
Cruz Okuneva @cruz.okuneva
- scheduledAt
- status
- completed
- notes
- Tener accendo enim comminor impedit.
- createdAt
Overview
showings / #275
#275
#275
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/275" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/275" ); 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/275"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/275"
)
showing = res.json() Response
{
"id": 275,
"listingId": 103,
"prospectUserId": 239,
"scheduledAt": "2026-02-28T20:17:59.379Z",
"status": "completed",
"notes": "Tener accendo enim comminor impedit.",
"createdAt": "2026-02-24T10:31:27.207Z"
}