showings #85
- listingId
- Apartment in South Marshall · South Marshall
- prospectUserId
-
Della Labadie @della_labadie
- scheduledAt
- status
- completed
- notes
- Strues tutamen vilicus vomica.
- createdAt
Overview
showings / #85
#85
#85
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/85" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/85" ); 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/85"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/85"
)
showing = res.json() Response
{
"id": 85,
"listingId": 30,
"prospectUserId": 46,
"scheduledAt": "2026-05-02T06:19:47.540Z",
"status": "completed",
"notes": "Strues tutamen vilicus vomica.",
"createdAt": "2026-04-05T17:56:42.274Z"
}