showings #400
- listingId
- Townhouse in Gerholdstead · Gerholdstead
- prospectUserId
-
Matilde Beahan @matilde_beahan
- scheduledAt
- status
- no_show
- notes
- Aranea aestas spiritus.
- createdAt
Overview
showings / #400
#400
#400
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/400" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/400" ); 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/400"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/400"
)
showing = res.json() Response
{
"id": 400,
"listingId": 149,
"prospectUserId": 96,
"scheduledAt": "2026-01-19T10:12:24.222Z",
"status": "no_show",
"notes": "Aranea aestas spiritus.",
"createdAt": "2026-01-07T16:54:53.955Z"
}