showings #140
- listingId
- Apartment in Lake Lillieboro · Lake Lillieboro
- prospectUserId
-
Jadon Nicolas @jadon.nicolas
- scheduledAt
- status
- completed
- notes
- Vehemens quasi alveus cribro damno degero libero beatus.
- createdAt
Overview
showings / #140
#140
#140
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/140" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/140" ); 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/140"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/140"
)
showing = res.json() Response
{
"id": 140,
"listingId": 53,
"prospectUserId": 213,
"scheduledAt": "2026-05-02T08:55:30.390Z",
"status": "completed",
"notes": "Vehemens quasi alveus cribro damno degero libero beatus.",
"createdAt": "2026-04-28T20:31:43.247Z"
}