showings #394
- listingId
- Apartment in Katlynnhaven · Katlynnhaven
- prospectUserId
-
Sarah West @sarah.west
- scheduledAt
- status
- cancelled
- notes
- Aequus vulnero sub tabesco deserunt aperte utique.
- createdAt
Overview
showings / #394
#394
#394
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/394" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/394" ); 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/394"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/394"
)
showing = res.json() Response
{
"id": 394,
"listingId": 146,
"prospectUserId": 217,
"scheduledAt": "2026-04-17T17:58:15.042Z",
"status": "cancelled",
"notes": "Aequus vulnero sub tabesco deserunt aperte utique.",
"createdAt": "2026-04-15T05:48:09.106Z"
}