showings #80
- listingId
- Apartment in Westminster · Westminster
- prospectUserId
-
Arnaldo Friesen @arnaldo_friesen78
- scheduledAt
- status
- completed
- notes
- Creber votum ait creber vobis ante termes.
- createdAt
Overview
showings / #80
#80
#80
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/80" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/80" ); 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/80"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/80"
)
showing = res.json() Response
{
"id": 80,
"listingId": 28,
"prospectUserId": 113,
"scheduledAt": "2025-04-29T06:27:29.169Z",
"status": "completed",
"notes": "Creber votum ait creber vobis ante termes.",
"createdAt": "2025-04-27T17:55:54.563Z"
}