showings #302
- listingId
- Apartment in Duluth · Duluth
- prospectUserId
-
Everett Yundt @everett_yundt11
- scheduledAt
- status
- scheduled
- notes
- Absens bonus thema voluptate.
- createdAt
Overview
showings / #302
#302
#302
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/302" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/302" ); 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/302"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/302"
)
showing = res.json() Response
{
"id": 302,
"listingId": 112,
"prospectUserId": 44,
"scheduledAt": "2026-01-01T12:08:45.757Z",
"status": "scheduled",
"notes": "Absens bonus thema voluptate.",
"createdAt": "2025-12-08T13:59:55.273Z"
}